mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Update bindable only if enabled
This commit is contained in:
@ -76,7 +76,10 @@ namespace osu.Game.Overlays.Toolbar
|
||||
modeButtons.Add(new ToolbarRulesetButton
|
||||
{
|
||||
Ruleset = r,
|
||||
Action = delegate { ruleset.Value = r; }
|
||||
Action = delegate
|
||||
{
|
||||
if (!ruleset.Disabled) ruleset.Value = r;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user