mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 14:17:06 +09:00
Fetch listing only once; Reenable disabled links as they wont be regenerated
This commit is contained in:
@ -171,7 +171,13 @@ namespace osu.Game.Overlays.Changelog
|
||||
Direction = FillDirection.Vertical,
|
||||
},
|
||||
};
|
||||
clickableText.Action += () => clickableText.IsEnabled = false;
|
||||
|
||||
// we may not want double clicks to make it double the work
|
||||
clickableText.Action += () =>
|
||||
{
|
||||
clickableText.IsEnabled = false;
|
||||
Scheduler.AddDelayed(() => clickableText.IsEnabled = true, 2000);
|
||||
};
|
||||
}
|
||||
|
||||
public void UpdateChevronTooltips(string previousVersion, string nextVersion)
|
||||
|
Reference in New Issue
Block a user