From: Vadim Zeitlin Date: Tue, 25 Jul 2006 00:49:19 +0000 (+0000) Subject: document HasAlignment(), Left/RightIndent() and Tabs() (patch 1527048) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ada5f90df813e2c1fbaf46db71ddda67a6c18b27 document HasAlignment(), Left/RightIndent() and Tabs() (patch 1527048) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43592 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 89faa57b7f..6d3b2b4bc6 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -2188,9 +2188,9 @@ bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg) // we treat PageUp/Dn as arrows because chances are that // a control which needs arrows also needs them for // navigation (e.g. wxTextCtrl, wxListCtrl, ...) - if ( (lDlgCode & DLGC_WANTARROWS) || !bCtrlDown ) + if ( (lDlgCode & DLGC_WANTARROWS) && !bCtrlDown ) bProcess = false; - else + else // OTOH Ctrl-PageUp/Dn works as [Shift-]Ctrl-Tab bWindowChange = true; break;