diff options
author | George Hazan <ghazan@miranda.im> | 2019-12-15 19:15:50 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-12-15 19:15:50 +0300 |
commit | 077ffccc634e59303ab1cd4e239c6d0211340513 (patch) | |
tree | 1bf6dc81bb318cf2497dfce72bd94afa671f57d7 | |
parent | e57ec83950a1c44eb4d8867f8beafd5cd3df1045 (diff) |
fixes #2144 (tabSRMM: sound options disappear after applying options)
-rw-r--r-- | plugins/TabSRMM/src/containeroptions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/containeroptions.cpp b/plugins/TabSRMM/src/containeroptions.cpp index f3a85edc2c..f6862852e1 100644 --- a/plugins/TabSRMM/src/containeroptions.cpp +++ b/plugins/TabSRMM/src/containeroptions.cpp @@ -463,7 +463,7 @@ do_apply: Utils::enableDlgControl(hwndDlg, IDC_APPLY, true); newFlags.m_bUinStatusBar = IsDlgButtonChecked(hwndDlg, IDC_UIDSTATUSBAR);
newFlags.m_bGlobalSize = IsDlgButtonChecked(hwndDlg, IDC_USEGLOBALSIZE);
newFlags.m_bInfoPanel = IsDlgButtonChecked(hwndDlg, IDC_INFOPANEL);
- newFlags.m_bNoSound = IsDlgButtonChecked(hwndDlg, IDC_O_ENABLESOUNDS);
+ newFlags.m_bNoSound = !IsDlgButtonChecked(hwndDlg, IDC_O_ENABLESOUNDS);
newFlags.m_bAvatarsOnTaskbar = IsDlgButtonChecked(hwndDlg, IDC_AVATARSONTASKBAR);
newFlags.m_bVerticalMax = IsDlgButtonChecked(hwndDlg, IDC_VERTICALMAX);
newFlags.m_bAutoSplitter = IsDlgButtonChecked(hwndDlg, IDC_AUTOSPLITTER);
|