From cf75c1b4fbf08f9bb4d1ad1333a5696ff56e92c7 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 12 Feb 2001 20:30:00 +0000 Subject: [PATCH] Now uses CC_FULLOPEN if m_colourData.GetChooseFull() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9357 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/colordlg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/msw/colordlg.cpp b/src/msw/colordlg.cpp index 3480911ad9..8fc614cff7 100644 --- a/src/msw/colordlg.cpp +++ b/src/msw/colordlg.cpp @@ -128,8 +128,8 @@ int wxColourDialog::ShowModal() chooseColorStruct.lCustData = (LPARAM)this; chooseColorStruct.lpfnHook = wxColourDialogHookProc; - if (!m_colourData.GetChooseFull()) - chooseColorStruct.Flags |= CC_PREVENTFULLOPEN; + if (m_colourData.GetChooseFull()) + chooseColorStruct.Flags |= CC_FULLOPEN; // Do the modal dialog bool success = ::ChooseColor(&(chooseColorStruct)) != 0; -- 2.45.2