Disable toolbox composition buttons when beatmap is not timed

This commit is contained in:
Dean Herbert
2021-07-17 02:30:13 +09:00
parent 3ae5f6707a
commit eac9b1ec7e
3 changed files with 103 additions and 32 deletions

View File

@ -219,7 +219,8 @@ namespace osu.Game.Rulesets.Edit
if (item != null)
{
item.Select();
if (!item.Selected.Disabled)
item.Select();
return true;
}
}