diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-05-18 09:58:44 +0200 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-05-18 09:58:44 +0200 |
commit | 87f69eb52304b8d004759ce62b69dd79a8794a02 (patch) | |
tree | a908808725c54067e17a3e593c443dc3d3888c39 | |
parent | c60f2a2db21477a2339ed35600d2861fc792c0a4 (diff) | |
parent | 3670698e2e0978adc1853507358864a98e1e92a3 (diff) | |
download | ayatana-indicator-sound-87f69eb52304b8d004759ce62b69dd79a8794a02.tar.gz ayatana-indicator-sound-87f69eb52304b8d004759ce62b69dd79a8794a02.tar.bz2 ayatana-indicator-sound-87f69eb52304b8d004759ce62b69dd79a8794a02.zip |
fix for the gnome control centre sound preferences link, thanks Jeremy
-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); |