]> git.saurik.com Git - wxWidgets.git/commitdiff
Always position value lable left of a vertical slider
authorRobert Roebling <robert@roebling.de>
Sat, 14 Nov 2009 16:34:56 +0000 (16:34 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 14 Nov 2009 16:34:56 +0000 (16:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62644 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/slider.cpp

index 74e0647ecacd317b7d9047066f1d4a5549782651..a0998bc13be6c1c356d44e608f70576f1044bbd2 100644 (file)
@@ -357,10 +357,13 @@ bool wxSlider::Create(wxWindow *parent,
         m_minLabel = NULL;
     }
     
-    gtk_scale_set_draw_value(GTK_SCALE (m_scale), (style & wxSL_VALUE_LABEL) != 0);
+    if (style & wxSL_VALUE_LABEL)
+    {
+        gtk_scale_set_draw_value(GTK_SCALE (m_scale), TRUE );
     
-    if ((style & wxSL_MIN_MAX_LABELS) && (style & wxSL_VERTICAL))
-        gtk_scale_set_value_pos( GTK_SCALE(m_scale), GTK_POS_LEFT );
+        if (style & wxSL_VERTICAL)
+            gtk_scale_set_value_pos( GTK_SCALE(m_scale), GTK_POS_LEFT );
+    }
     
     // Keep full precision in position value
     gtk_scale_set_digits(GTK_SCALE (m_scale), -1);