diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-03-23 08:03:02 -0400 |
---|---|---|
committer | Bazaar Package Importer <james.westby@ubuntu.com> | 2011-03-23 08:03:02 -0400 |
commit | da843ceb9c02daa29264a84274fbe29980759781 (patch) | |
tree | 29832939d94854deb28655f2c3ed2612a86385c5 /src/indicator-sound.c | |
parent | b731b7b95a7507d2a900ae5f08af7ce54c8148a9 (diff) | |
parent | b7b6431edc4b20512f76be9c8688e67cda01831e (diff) | |
download | ayatana-indicator-sound-da843ceb9c02daa29264a84274fbe29980759781.tar.gz ayatana-indicator-sound-da843ceb9c02daa29264a84274fbe29980759781.tar.bz2 ayatana-indicator-sound-da843ceb9c02daa29264a84274fbe29980759781.zip |
* New upstream release.
- Media player should be automatically started up when play button is
pressed (LP: #714750)
- volume goes to zero when using some players like banshee or
rhythmbox (LP: #730925)
- handle banshee id change (LP: #737447)
- filter out video playlists (LP: #739273)
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); } |