mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 02:53:00 +08:00
Fix setting same state multiple times.
This commit is contained in:
parent
7cac2680b1
commit
b2661be0b2
@ -88,6 +88,9 @@ namespace osu.Game.Screens.Tournament
|
||||
get { return _scrollState; }
|
||||
set
|
||||
{
|
||||
if (_scrollState == value)
|
||||
return;
|
||||
|
||||
_scrollState = value;
|
||||
|
||||
delayedStateChangeDelegate?.Cancel();
|
||||
|
Loading…
Reference in New Issue
Block a user