]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/window.cpp
corrections for buffers
[wxWidgets.git] / src / msw / window.cpp
index bbca2e056f2dd6f17a540a51063f775e414c3566..51c815981dd819b312bb70ba6d319118b88ca285 100644 (file)
@@ -1813,10 +1813,7 @@ bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg)
             switch ( msg->wParam )
             {
                 case VK_TAB:
-                    // assume that nobody wants Shift-TAB for himself - if we
-                    // don't do it there is no easy way for a control to grab
-                    // TABs but still let Shift-TAB work as navugation key
-                    if ( (lDlgCode & DLGC_WANTTAB) && !bShiftDown ) {
+                    if ( lDlgCode & DLGC_WANTTAB ) {
                         bProcess = FALSE;
                     }
                     else {