diff options
author | George Hazan <george.hazan@gmail.com> | 2024-05-01 14:07:01 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-05-01 14:07:01 +0300 |
commit | 720d774bfc0aa7941d1493a63291352f223aa61e (patch) | |
tree | 72e69d50f274695fcb95bca289b497190e6c78ab /include | |
parent | 8f1efe1635c9572771a2e9e319e52dd989c87f90 (diff) |
CSplitter: fix to avoid problems caused by WM_SIZE optimization
Diffstat (limited to 'include')
-rw-r--r-- | include/m_gui.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index 999db8899b..9f08d3d4f2 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -495,6 +495,7 @@ protected: bool m_bFixedSize;
bool m_bSucceeded = false; // was IDOK pressed or not
bool m_bExiting = false; // window received WM_CLOSE and gonna die soon
+ bool m_bScheduledResize = false;
enum { CLOSE_ON_OK = 0x1, CLOSE_ON_CANCEL = 0x2 };
uint8_t m_autoClose; // automatically close dialog on IDOK/CANCEL commands. default: CLOSE_ON_OK|CLOSE_ON_CANCEL
|