sound: set has-origin = FALSE for the balance bar scale
The scale here is used for Left<->Right, so it doesn't have an origin. https://bugzilla.gnome.org/show_bug.cgi?id=692238
This commit is contained in:
parent
9b0a509966
commit
0a083ca973
1 changed files with 1 additions and 0 deletions
|
@ -91,6 +91,7 @@ _scale_box_new (GvcBalanceBar *bar)
|
|||
|
||||
bar->priv->scale_box = box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
|
||||
priv->scale = gtk_scale_new (GTK_ORIENTATION_HORIZONTAL, priv->adjustment);
|
||||
gtk_scale_set_has_origin (GTK_SCALE (priv->scale), FALSE);
|
||||
gtk_widget_set_size_request (priv->scale, SCALE_SIZE, -1);
|
||||
|
||||
bar->priv->start_box = sbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
|
||||
|
|
Loading…
Add table
Reference in a new issue