mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Fix isDisplayed
never actually being set
This commit is contained in:
@ -131,9 +131,13 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
private void displayTemporarily()
|
private void displayTemporarily()
|
||||||
{
|
{
|
||||||
if (!isDisplayed)
|
if (!isDisplayed)
|
||||||
|
{
|
||||||
mainContent.FadeTo(1, 300, Easing.OutQuint);
|
mainContent.FadeTo(1, 300, Easing.OutQuint);
|
||||||
|
isDisplayed = true;
|
||||||
|
}
|
||||||
|
|
||||||
fadeOutDelegate?.Cancel();
|
fadeOutDelegate?.Cancel();
|
||||||
|
fadeOutDelegate = null;
|
||||||
|
|
||||||
if (!IsHovered)
|
if (!IsHovered)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user