]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/button.cpp
HID support (preliminary - not added to bakefiles yet)
[wxWidgets.git] / src / msw / button.cpp
index 7e1c380ca6460a526c9e90e732794c8d0e49c29e..7d2a84f19863ae0efddc56270f0ee4403b2013c9 100644 (file)
@@ -183,6 +183,9 @@ WXDWORD wxButton::MSWGetStyle(long style, WXDWORD *exstyle) const
         msStyle |= BS_TOP;
     if ( style & wxBU_BOTTOM )
         msStyle |= BS_BOTTOM;
+    // flat 2d buttons
+    if ( style & wxNO_BORDER )
+        msStyle |= BS_FLAT;
 #endif // __WIN32__
 
     return msStyle;