diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-12-01 17:19:30 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-12-01 17:19:30 +0000 |
commit | be80e257f60d48a8892abdd70d405f67aea45636 (patch) | |
tree | 6a2aeb4fdfeb755312bcd95f7e112047bae66a51 /src/indicator-sound.c | |
parent | b5974163f01f207200064f56ab4818257411834e (diff) | |
download | ayatana-indicator-sound-be80e257f60d48a8892abdd70d405f67aea45636.tar.gz ayatana-indicator-sound-be80e257f60d48a8892abdd70d405f67aea45636.tar.bz2 ayatana-indicator-sound-be80e257f60d48a8892abdd70d405f67aea45636.zip |
fixes lp #886339
Diffstat (limited to 'src/indicator-sound.c')
-rw-r--r-- | src/indicator-sound.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/indicator-sound.c b/src/indicator-sound.c index f45d926..b953449 100644 --- a/src/indicator-sound.c +++ b/src/indicator-sound.c @@ -419,6 +419,9 @@ new_volume_slider_widget(DbusmenuMenuitem * newitem, } volume_widget = volume_widget_new (newitem, io); priv->volume_widget = volume_widget; + // Don't forget to set the accessible desc. + update_accessible_desc (io); + GtkWidget* ido_slider_widget = volume_widget_get_ido_slider(VOLUME_WIDGET(priv->volume_widget)); @@ -759,8 +762,7 @@ update_accessible_desc (IndicatorObject * io) } entry->accessible_desc = priv->accessible_desc; - g_free (old_desc); - + g_free (old_desc); g_signal_emit(G_OBJECT(io), INDICATOR_OBJECT_SIGNAL_ACCESSIBLE_DESC_UPDATE_ID, 0, |