]> git.saurik.com Git - wxWidgets.git/commitdiff
set selection before setting focus to the control in SetFocusFromKbd() (patch 726361)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 22 Jun 2003 21:56:43 +0000 (21:56 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 22 Jun 2003 21:56:43 +0000 (21:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21306 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/window.cpp

index fa2afaca08e5aa21d07bd81e86b50fbf59777c0d..45b1156215cf1f625cbe67bb8cdd1a6e307e0fb4 100644 (file)
@@ -474,8 +474,6 @@ void wxWindowMSW::SetFocus()
 
 void wxWindowMSW::SetFocusFromKbd()
 {
-    wxWindowBase::SetFocusFromKbd();
-
     // when the focus is given to the control with DLGC_HASSETSEL style from
     // keyboard its contents should be entirely selected: this is what
     // ::IsDialogMessage() does and so we should do it as well to provide the
@@ -484,6 +482,11 @@ void wxWindowMSW::SetFocusFromKbd()
     {
         ::SendMessage(GetHwnd(), EM_SETSEL, 0, -1);
     }
+
+    // do this after (maybe) setting the selection as like this when
+    // wxEVT_SET_FOCUS handler is called, the selection would have been already
+    // set correctly -- this may be important
+    wxWindowBase::SetFocusFromKbd();
 }
 
 // Get the window with the focus