diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-08-31 12:08:03 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-08-31 12:08:03 +0100 |
commit | a9a0b28e5f0410bc1172a21ea7e40bb3c76ece8c (patch) | |
tree | 99d7f56fc0d1df5efbdc78c2d5cf972d880d50d3 /src/volume-widget.c | |
parent | 27cffeb0da739fa484ea22e6dbad26fe2978f451 (diff) | |
download | ayatana-indicator-sound-a9a0b28e5f0410bc1172a21ea7e40bb3c76ece8c.tar.gz ayatana-indicator-sound-a9a0b28e5f0410bc1172a21ea7e40bb3c76ece8c.tar.bz2 ayatana-indicator-sound-a9a0b28e5f0410bc1172a21ea7e40bb3c76ece8c.zip |
fixed the scrolling regression
Diffstat (limited to 'src/volume-widget.c')
-rw-r--r-- | src/volume-widget.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/volume-widget.c b/src/volume-widget.c index bf1ddb9..5e7cf9f 100644 --- a/src/volume-widget.c +++ b/src/volume-widget.c @@ -1,3 +1,4 @@ + /* Copyright 2010 Canonical Ltd. @@ -48,6 +49,7 @@ static void volume_widget_set_twin_item( VolumeWidget* self, DbusmenuMenuitem* twin_item); static void volume_widget_property_update( DbusmenuMenuitem* item, gchar* property, GValue* value, gpointer userdata); + static gboolean volume_widget_change_value_cb (GtkRange *range, GtkScrollType scroll, gdouble value, @@ -103,7 +105,7 @@ volume_widget_init (VolumeWidget *self) g_object_unref(secondary_gicon); GtkAdjustment *adj = gtk_range_get_adjustment (GTK_RANGE (volume_widget)); - gtk_adjustment_set_step_increment(adj, 3); + gtk_adjustment_set_step_increment(adj, 4); } static void |