diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-03-21 13:04:13 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-03-21 13:04:13 +0000 |
commit | d84e5d382f2f62e4af5d0e9f8ed993b671acc15a (patch) | |
tree | b94727653de339ed7eae81f17b2cf9987971e012 /src/indicator-sound.c | |
parent | 8418707f9e99f08b44e8cb7641ba50a110003784 (diff) | |
download | ayatana-indicator-sound-d84e5d382f2f62e4af5d0e9f8ed993b671acc15a.tar.gz ayatana-indicator-sound-d84e5d382f2f62e4af5d0e9f8ed993b671acc15a.tar.bz2 ayatana-indicator-sound-d84e5d382f2f62e4af5d0e9f8ed993b671acc15a.zip |
some extra trace around sliders to track the volume zero app start madness
Diffstat (limited to 'src/indicator-sound.c')
-rw-r--r-- | src/indicator-sound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indicator-sound.c b/src/indicator-sound.c index 7d74a42..042bf89 100644 --- a/src/indicator-sound.c +++ b/src/indicator-sound.c @@ -539,7 +539,7 @@ key_press_cb(GtkWidget* widget, GdkEventKey* event, gpointer data) voip_input_widget_update (VOIP_INPUT_WIDGET(priv->voip_widget), new_value); } else{ - volume_widget_update (VOLUME_WIDGET(priv->volume_widget), new_value); + volume_widget_update (VOLUME_WIDGET(priv->volume_widget), new_value, "keypress-update"); } } } @@ -660,7 +660,7 @@ indicator_sound_scroll (IndicatorObject *io, gint delta, value -= adj->step_increment; } //g_debug("indicator-sound-scroll - update slider with value %f", value); - volume_widget_update(VOLUME_WIDGET(priv->volume_widget), value); + volume_widget_update(VOLUME_WIDGET(priv->volume_widget), value, "scroll updates"); sound_state_manager_show_notification (priv->state_manager, value); } |