Skip to content

Commit

Permalink
MP1-5199: Configuration: Change default Volume Control settings
Browse files Browse the repository at this point in the history
  • Loading branch information
epbk committed Feb 23, 2024
1 parent 37b6913 commit 135ace2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mediaportal/Configuration/Sections/GeneralVolume.cs
Expand Up @@ -78,8 +78,8 @@ public override void LoadSettings()
{
string isSettingExist = reader.GetValueAsString("volume", "handler", "");
int volumeStyle = reader.GetValueAsInt("volume", "handler", 1);
bool isDigital = reader.GetValueAsBool("volume", "digital", true);
mpCBHideWinOSD.Checked = reader.GetValueAsBool("volume", "hideWindowsOSD", false);
bool isDigital = reader.GetValueAsBool("volume", "digital", false);
mpCBHideWinOSD.Checked = reader.GetValueAsBool("volume", "hideWindowsOSD", true);

_useClassicHandler.Checked = volumeStyle == 0;
_useWindowsHandler.Checked = volumeStyle == 1;
Expand Down

0 comments on commit 135ace2

Please sign in to comment.