diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-07-11 17:06:41 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-07-11 17:06:41 (GMT) |
commit | f42e4d5cd20a95f41124f256308192ba064a0c99 (patch) | |
tree | 2333f411caa15603172d683218c676b83c5f889e /Source/MFCDialog | |
parent | 189a9db9b632a95aa8b9887d07e820dd480bf60d (diff) | |
download | CMake-f42e4d5cd20a95f41124f256308192ba064a0c99.zip CMake-f42e4d5cd20a95f41124f256308192ba064a0c99.tar.gz CMake-f42e4d5cd20a95f41124f256308192ba064a0c99.tar.bz2 |
fixed up resizing info
Diffstat (limited to 'Source/MFCDialog')
-rw-r--r-- | Source/MFCDialog/CMakeSetupDialog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/MFCDialog/CMakeSetupDialog.cpp b/Source/MFCDialog/CMakeSetupDialog.cpp index bf250fa..5acfd57 100644 --- a/Source/MFCDialog/CMakeSetupDialog.cpp +++ b/Source/MFCDialog/CMakeSetupDialog.cpp @@ -586,6 +586,11 @@ void CMakeSetupDialog::SaveCacheFromGUI() void CMakeSetupDialog::OnSize(UINT nType, int cx, int cy) { + if (nType == SIZE_MINIMIZED) + { + CDialog::OnSize(nType, cx, cy); + return; + } if (m_oldCX == -1) { m_oldCX = cx; |