1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 06:03:08 +08:00

add gameplay leaderboard config

This commit is contained in:
nanashi-1 2022-09-26 20:08:58 +08:00
parent bed25ff60e
commit dc051a8b79

View File

@ -38,6 +38,12 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
Current = config.GetBindable<bool>(OsuSetting.KeyOverlay),
Keywords = new[] { "counter" },
},
new SettingsCheckbox
{
LabelText = GameplaySettingsStrings.AlwaysShowGameplayLeaderboard,
Current = config.GetBindable<bool>(OsuSetting.GameplayLeaderboard),
Keywords = new[] { "leaderboard", "score" },
},
};
}
}