From 54d7ef82f2eac7514cffaa62890f303acef353e9 Mon Sep 17 00:00:00 2001 From: Yoshie2000 Date: Sun, 30 Aug 2020 21:09:59 +0200 Subject: [PATCH] Changed the order of the sound options in the settings menu --- src/js/profile/application_settings.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/js/profile/application_settings.js b/src/js/profile/application_settings.js index def60b6f..865d45d2 100644 --- a/src/js/profile/application_settings.js +++ b/src/js/profile/application_settings.js @@ -164,14 +164,6 @@ export const allApplicationSettings = [ */ (app, value) => app.sound.setSoundsMuted(value) ), - new BoolSetting( - "musicMuted", - enumCategories.general, - /** - * @param {Application} app - */ - (app, value) => app.sound.setMusicMuted(value) - ), new RangeSetting( "soundVolume", enumCategories.general, @@ -180,6 +172,14 @@ export const allApplicationSettings = [ */ (app, value) => app.sound.setSoundVolume(value / 100.0) ), + new BoolSetting( + "musicMuted", + enumCategories.general, + /** + * @param {Application} app + */ + (app, value) => app.sound.setMusicMuted(value) + ), new RangeSetting( "musicVolume", enumCategories.general,