]> git.saurik.com Git - wxWidgets.git/commitdiff
Correct slider width when labels are used.
authorKevin Ollivier <kevino@theolliviers.com>
Sun, 18 Jul 2004 19:13:50 +0000 (19:13 +0000)
committerKevin Ollivier <kevino@theolliviers.com>
Sun, 18 Jul 2004 19:13:50 +0000 (19:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28301 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/slider.cpp

index fb8d6a322aedfbd2f3c015407363d898b152f451..3a268fce3e63af27fc4947f58b0f165fb937d401 100644 (file)
@@ -404,7 +404,6 @@ void wxSlider::DoSetSize(int x, int y, int w, int h, int sizeFlags)
         }
         else
         {
-            w = w - xborder ;
             if ( m_macMinimumStatic )
                 m_macMinimumStatic->Move(GetPosition().x + 0, GetPosition().y + sliderBreadth + wxSLIDER_BORDERTEXT);
             if ( m_macMaximumStatic )
@@ -412,6 +411,7 @@ void wxSlider::DoSetSize(int x, int y, int w, int h, int sizeFlags)
                 GetPosition().y + sliderBreadth + wxSLIDER_BORDERTEXT);
             if ( m_macValueStatic )
                 m_macValueStatic->Move(GetPosition().x + w, GetPosition().y + 0);
+            w = w - xborder ;
         }
     }
     //If the control has labels, we still need to call this again because