remove theme shuffle option

fixes #121
This commit is contained in:
ITotalJustice
2025-04-19 22:55:08 +01:00
parent 3141100457
commit 651d9fa495
3 changed files with 1 additions and 20 deletions

View File

@@ -246,10 +246,6 @@ MainMenu::MainMenu() {
App::SetTheme(index_out);
}, App::GetThemeIndex()));
options->Add(std::make_shared<SidebarEntryBool>("Shuffle"_i18n, App::GetThemeShuffleEnable(), [this](bool& enable){
App::SetThemeShuffleEnable(enable);
}, "Enabled"_i18n, "Disabled"_i18n));
options->Add(std::make_shared<SidebarEntryBool>("Music"_i18n, App::GetThemeMusicEnable(), [this](bool& enable){
App::SetThemeMusicEnable(enable);
}, "Enabled"_i18n, "Disabled"_i18n));