Make the disabling of the win key during gameplay a toggleable setting.

This commit is contained in:
Lucas A
2020-06-30 13:12:33 +02:00
parent 50ae69b111
commit 641ea5b950
2 changed files with 8 additions and 1 deletions

View File

@ -76,6 +76,11 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
{
LabelText = "Score display mode",
Bindable = config.GetBindable<ScoringMode>(OsuSetting.ScoreDisplayMode)
},
new SettingsCheckbox
{
LabelText = "Disable Win key during gameplay",
Bindable = config.GetBindable<bool>(OsuSetting.GameplayDisableWinKey)
}
};
}