diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-05-19 11:38:19 -0400 |
---|---|---|
committer | Bazaar Package Importer <james.westby@ubuntu.com> | 2011-05-19 11:38:19 -0400 |
commit | 7a20a205c496bed5d7c779ff60a5730b55b60060 (patch) | |
tree | 4566d0f4c0ca9cc196a22acc3253e49b964fe43a /src/sound-service-dbus.c | |
parent | ddeb07d1ed4e438e97ada86f94dca47ddd251b4f (diff) | |
parent | 306604f2426f7a1b7a4516566cb68e1d6c982998 (diff) | |
download | ayatana-indicator-sound-7a20a205c496bed5d7c779ff60a5730b55b60060.tar.gz ayatana-indicator-sound-7a20a205c496bed5d7c779ff60a5730b55b60060.tar.bz2 ayatana-indicator-sound-7a20a205c496bed5d7c779ff60a5730b55b60060.zip |
* New upstream release.
- Displayed cover don't keep the original ratio (LP: #654196)
- show record level control PULSE_PROP_media.role=production (LP: #736049)
- Volume notification is based on previous volume; should be based on
the new volume (LP: #748831)
- [gnome3] Sound Preferences link doesn't work (LP: #759390)
* debian/patches/lp_759390.patch
- dropped, merged upstream
* debian/control
- renamed the libnotify4-dev build depends to libnotify-dev
Diffstat (limited to 'src/sound-service-dbus.c')
-rw-r--r-- | src/sound-service-dbus.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sound-service-dbus.c b/src/sound-service-dbus.c index a22e648..d0fd765 100644 --- a/src/sound-service-dbus.c +++ b/src/sound-service-dbus.c @@ -200,7 +200,8 @@ show_sound_settings_dialog (DbusmenuMenuitem *mi, { GError * error = NULL; if (!g_spawn_command_line_async("gnome-volume-control --page=applications", &error) && - !g_spawn_command_line_async("xfce4-mixer", &error)) + !g_spawn_command_line_async("gnome-control-center sound", &error) && + !g_spawn_command_line_async("xfce4-mixer", &error)) { g_warning("Unable to show dialog: %s", error->message); g_error_free(error); |