From: Vadim Zeitlin Date: Fri, 14 Sep 2007 01:08:55 +0000 (+0000) Subject: use wxBORDER_NONE as border default for wxStatusBar: this generally makes sense and... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ebfc214808429624235521bc7946551063e82cb0 use wxBORDER_NONE as border default for wxStatusBar: this generally makes sense and also fixes the display problem of the status bars under Windows when using themes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48666 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/statusbr.h b/include/wx/statusbr.h index 8d7594ac78..1a136a0c62 100644 --- a/include/wx/statusbr.h +++ b/include/wx/statusbr.h @@ -97,6 +97,7 @@ public: // don't want status bars to accept the focus at all virtual bool AcceptsFocus() const { return false; } + virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } virtual bool CanBeOutsideClientArea() const { return true; } protected: