diff options
author | George Hazan <ghazan@miranda.im> | 2018-10-19 18:42:41 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-10-19 18:42:41 +0300 |
commit | 313939ac791820b092cb789ed3164a94f6a649f2 (patch) | |
tree | 5f10adfae650bf78a11640ccd0732d5457a6f996 /plugins/Import/src | |
parent | cb3cc17e874f46e8f351e90447fa760773833105 (diff) |
fix for import wizard drawing after resize
Diffstat (limited to 'plugins/Import/src')
-rw-r--r-- | plugins/Import/src/wizard.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/Import/src/wizard.cpp b/plugins/Import/src/wizard.cpp index 7852f89371..25589133e9 100644 --- a/plugins/Import/src/wizard.cpp +++ b/plugins/Import/src/wizard.cpp @@ -228,6 +228,7 @@ public: if (uMsg == WM_SIZE && hwndPage) {
SetWindowPos(hwndPage, 0, 0, 0, m_splitterX, m_splitterY, SWP_NOZORDER | SWP_NOACTIVATE);
SendMessage(hwndPage, WM_SIZE, wParam, lParam);
+ InvalidateRect(hwndPage, 0, 0);
}
return res;
|