]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/combobox.cpp
cleanup of TrackMouseEvent() code (use a single #ifdef instead of 3 different ones...
[wxWidgets.git] / 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;