mirror of https://github.com/ppy/osu
Protect the NewsCard from clicks while hovering DateContainer
This commit is contained in:
parent
0280f00022
commit
ab23e7dfd4
|
@ -11,6 +11,7 @@
|
|||
using osu.Framework.Graphics.Shapes;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Framework.Graphics.Textures;
|
||||
using osu.Framework.Input.Events;
|
||||
using osu.Framework.Platform;
|
||||
using osu.Game.Graphics;
|
||||
using osu.Game.Graphics.Containers;
|
||||
|
@ -187,6 +188,8 @@ private void load(OverlayColourProvider colourProvider)
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
protected override bool OnClick(ClickEvent e) => true; // Protects the NewsCard from clicks while hovering DateContainer
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue