mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 10:33:01 +08:00
Fix progress notifications queueing up infinite text changes when not visible
This commit is contained in:
parent
5ab3815123
commit
e3251b40b3
@ -54,7 +54,7 @@ namespace osu.Game.Overlays.Notifications
|
|||||||
set
|
set
|
||||||
{
|
{
|
||||||
text = value;
|
text = value;
|
||||||
Schedule(() => textDrawable.Text = text);
|
Scheduler.AddOnce(t => textDrawable.Text = t, text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user