diff options
author | armen <armen114@yandex.ru> | 2018-02-22 12:23:30 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-02-22 11:29:09 +0200 |
commit | 3cde422aa4de8a8a732f59cd9a3ed2d1d0886a42 (patch) | |
tree | 49b77faa6ae6693f7f2114c795f23728d60d85be | |
parent | fa0f4e50fa9f2dcb575d76c7c8a0f03d789d9ca7 (diff) |
fixes #1115 (Enable sound effects option bug)
-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 89ec3b074d..7540e38b79 100644 --- a/plugins/TabSRMM/src/containeroptions.cpp +++ b/plugins/TabSRMM/src/containeroptions.cpp @@ -276,7 +276,7 @@ INT_PTR CALLBACK DlgProcContainerOptions(HWND hwndDlg, UINT msg, WPARAM wParam, }
case IDC_O_ENABLESOUNDS:
SendMessage(hwndDlg, DM_SC_CONFIG, 0, 0);
- break;
+ goto do_apply;
case IDC_TITLEFORMAT:
if (HIWORD(wParam) != EN_CHANGE || (HWND)lParam != GetFocus())
|