From 41c1af4c0871c8c6b29f06a156eca86e80d78dd4 Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 22 Sep 2020 08:53:26 +0200 Subject: [PATCH] FIX(client): Setting not saved The showVolumeAdjustment setting was saved twice but wasn't loaded anywhere. --- src/mumble/Settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mumble/Settings.cpp b/src/mumble/Settings.cpp index 5df753d4b..af767cc87 100644 --- a/src/mumble/Settings.cpp +++ b/src/mumble/Settings.cpp @@ -858,6 +858,7 @@ void Settings::load(QSettings *settings_ptr) { SAVELOAD(bStateInTray, "ui/stateintray"); SAVELOAD(bUsage, "ui/usage"); SAVELOAD(bShowUserCount, "ui/showusercount"); + SAVELOAD(bShowVolumeAdjustments, "ui/showVolumeAdjustments"); SAVELOAD(bChatBarUseSelection, "ui/chatbaruseselection"); SAVELOAD(bFilterHidesEmptyChannels, "ui/filterhidesemptychannels"); SAVELOAD(bFilterActive, "ui/filteractive"); @@ -1228,7 +1229,6 @@ void Settings::save() { SAVELOAD(bUsage, "ui/usage"); SAVELOAD(bShowUserCount, "ui/showusercount"); SAVELOAD(bShowVolumeAdjustments, "ui/showVolumeAdjustments"); - SAVELOAD(bShowVolumeAdjustments, "ui/showVolumeAdjustments"); SAVELOAD(bChatBarUseSelection, "ui/chatbaruseselection"); SAVELOAD(bFilterHidesEmptyChannels, "ui/filterhidesemptychannels"); SAVELOAD(bFilterActive, "ui/filteractive");