]> git.saurik.com Git - wxWidgets.git/commitdiff
Added a necessary pixel to height if wxTB_NODIVIDER is specified
authorJulian Smart <julian@anthemion.co.uk>
Fri, 27 Dec 2002 14:40:52 +0000 (14:40 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 27 Dec 2002 14:40:52 +0000 (14:40 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18424 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/tbar95.cpp

index 9fd39ade694fbb64471bd5b39dc6f45aab1ba0f6..5716e1a76fc83356ab09e64ed6e06187d2328cbd 100644 (file)
@@ -1197,7 +1197,7 @@ bool wxToolBar::HandleSize(WXWPARAM wParam, WXLPARAM lParam)
                 // FIXME: 6 is hardcoded separator line height...
                 //h += 6;
                 if (HasFlag(wxTB_NODIVIDER))
-                    h += 3;
+                    h += 4;
                 else
                     h += 6;
                 h *= m_maxRows;