diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-01-11 11:18:26 -0600 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-01-11 11:18:26 -0600 |
commit | 8b9210008dbb036bd6885417a418552690642ad7 (patch) | |
tree | a1918d1f909a5439b8c7d409f39fe89128ac4a3f /src | |
parent | ecb6cb2056263d3c9066c1ace0e4c9d54186e142 (diff) | |
download | ayatana-indicator-sound-8b9210008dbb036bd6885417a418552690642ad7.tar.gz ayatana-indicator-sound-8b9210008dbb036bd6885417a418552690642ad7.tar.bz2 ayatana-indicator-sound-8b9210008dbb036bd6885417a418552690642ad7.zip |
change over complete for now, big refactor of indicator sound needed
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator-sound.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/indicator-sound.c b/src/indicator-sound.c index ab69b14..cdcc723 100644 --- a/src/indicator-sound.c +++ b/src/indicator-sound.c @@ -360,8 +360,8 @@ new_volume_slider_widget(DbusmenuMenuitem * newitem, DbusmenuMenuitem * parent, dbusmenu_gtkclient_newitem_base(DBUSMENU_GTKCLIENT(client), newitem, menu_volume_item, - parent); - fetch_state(INDICATOR_SOUND (io)); + parent); + fetch_state(INDICATOR_SOUND (io)); return TRUE; } @@ -451,7 +451,11 @@ static void create_connection_to_service (GObject *source_object, static void fetch_state (IndicatorSound* self) { + IndicatorSoundPrivate* priv = INDICATOR_SOUND_GET_PRIVATE(self); + if(priv->volume_widget != NULL){ + determine_state_from_volume (volume_widget_get_current_volume(priv->volume_widget)); + } g_dbus_proxy_call ( priv->dbus_proxy, "GetSinkMute", @@ -470,6 +474,7 @@ static void fetch_state (IndicatorSound* self) NULL, (GAsyncReadyCallback)get_sink_availability_cb, self); + } static void get_sink_availability_cb ( GObject *object, @@ -750,6 +755,9 @@ react_to_signal_sink_mute_update(gboolean mute_value, IndicatorSound* self) } GtkWidget* slider_widget = volume_widget_get_ido_slider(VOLUME_WIDGET(priv->volume_widget)); gtk_widget_set_sensitive(slider_widget, !mute_value); + if(mute_value == FALSE){ + determine_state_from_volume (volume_widget_get_current_volume(priv->volume_widget)); + } } @@ -759,7 +767,11 @@ react_to_signal_sink_availability_update(gboolean available_value, IndicatorSoun device_available = available_value; if (device_available == FALSE) { update_state(STATE_SINKS_NONE); + return; } + IndicatorSoundPrivate* priv = INDICATOR_SOUND_GET_PRIVATE(self); + + determine_state_from_volume (volume_widget_get_current_volume(priv->volume_widget)); //g_debug("signal caught - sink availability update with value: %i", available_value); } |