]> git.saurik.com Git - wxWidgets.git/commitdiff
reenable WS_TABSTOP (patch 1045547)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 19 Feb 2005 21:09:49 +0000 (21:09 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 19 Feb 2005 21:09:49 +0000 (21:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32212 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/combobox.cpp

index 0436320d2a058cfe647f8103c447921375bd5491..38ec288a72f82c7a409a4fd29c37462b7a77ce9d 100644 (file)
@@ -458,6 +458,11 @@ WXDWORD wxComboBox::MSWGetStyle(long style, WXDWORD *exstyle) const
                         (style & ~wxBORDER_MASK) | wxBORDER_NONE, exstyle
                       );
 
+    // usually WS_TABSTOP is added by wxControl::MSWGetStyle() but as we're
+    // created hidden (see Create() above), it is not done for us but we still
+    // want to have this style
+    msStyle |= WS_TABSTOP;
+
     // remove the style always added by wxChoice
     msStyle &= ~CBS_DROPDOWNLIST;