git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68749
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
- Added wxGCDC(wxEnhMetaFileDC) ctor (Marcin Wojdyr).
- Added wxTopLevelWindow::MSWGetSystemMenu().
+- Multiline text controls no longer select all content when gaining focus from
+ the keyboard.
2.9.2: (released 2011-07-05)
processed = true;
}
+ else if (IsOfStandardClass() && IsKindOf(CLASSINFO(wxTextCtrl)) && ((wxTextCtrl*)this)->IsMultiLine())
+ {
+ rc.result = MSWDefWindowProc(message, wParam, lParam);
+ // Clear the DLGC_HASSETSEL bit from the return value
+ rc.result &= ~DLGC_HASSETSEL;
+ processed = true;
+ }
//else: get the dlg code from the DefWindowProc()
break;