summaryrefslogtreecommitdiffstats
path: root/Source/MFCDialog
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-07-11 17:06:41 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-07-11 17:06:41 (GMT)
commitf42e4d5cd20a95f41124f256308192ba064a0c99 (patch)
tree2333f411caa15603172d683218c676b83c5f889e /Source/MFCDialog
parent189a9db9b632a95aa8b9887d07e820dd480bf60d (diff)
downloadCMake-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.cpp5
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;