diff options
author | George Hazan <ghazan@miranda.im> | 2020-07-30 21:20:06 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-07-30 21:20:06 +0300 |
commit | 82ac3372f296296cde92f82909981300f3654b7d (patch) | |
tree | 3bc1fbfab7b82ffb1fa3750ac706ec2589854d6b | |
parent | 5f027b06337ab7bd21f69361637aebd1a871c079 (diff) |
when a column button is clicked, Apply button shall be enabled
-rw-r--r-- | src/mir_app/src/chat_ui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mir_app/src/chat_ui.cpp b/src/mir_app/src/chat_ui.cpp index 5db35ef894..f692d9b36e 100644 --- a/src/mir_app/src/chat_ui.cpp +++ b/src/mir_app/src/chat_ui.cpp @@ -58,6 +58,7 @@ class CChatEventOptionDlg : public CDlgBase int enabled = !IsDlgButtonChecked(m_hwnd, ctrlId); for (int i = 0; i < _countof(_eventorder); i++) CheckDlgButton(m_hwnd, ctrlId + i, enabled); + NotifyChange(); } public: |