diff options
author | George Hazan <ghazan@miranda.im> | 2021-02-27 17:12:48 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-02-27 17:12:48 +0300 |
commit | b8c8df44a68fe62575e46278ba10da3f91c60517 (patch) | |
tree | 48c4d0ea7a61f032352ef8837a1d3263b386f15b /src/core/stdmsg | |
parent | f739848ff5ace0f3340b9b6e9977c649a0574293 (diff) |
fixes #2753 (by default only checkboxes should be notified about OnChange before OnInitDialog)
Diffstat (limited to 'src/core/stdmsg')
-rw-r--r-- | src/core/stdmsg/src/msgdialog.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/stdmsg/src/msgdialog.cpp b/src/core/stdmsg/src/msgdialog.cpp index db94642259..74433f6cde 100644 --- a/src/core/stdmsg/src/msgdialog.cpp +++ b/src/core/stdmsg/src/msgdialog.cpp @@ -1371,9 +1371,6 @@ void CMsgDialog::OnOptionsApplied(bool bUpdateAvatar) void CMsgDialog::onSplitterX(CSplitter *pSplitter)
{
- if (!m_bInitialized)
- return;
-
RECT rc;
GetClientRect(m_hwnd, &rc);
@@ -1387,9 +1384,6 @@ void CMsgDialog::onSplitterX(CSplitter *pSplitter) void CMsgDialog::onSplitterY(CSplitter *pSplitter)
{
- if (!m_bInitialized)
- return;
-
RECT rc;
GetClientRect(m_hwnd, &rc);
|