aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Bicha <jeremy@bicha.net>2011-04-13 01:10:51 -0400
committerJeremy Bicha <jeremy@bicha.net>2011-04-13 01:10:51 -0400
commit3670698e2e0978adc1853507358864a98e1e92a3 (patch)
tree13d1127eb3cf9e0bda708bfee81f54aae68e4a6d /src
parent15c7802a9f753b0d06e7690ae24402644cd12bfe (diff)
downloadayatana-indicator-sound-3670698e2e0978adc1853507358864a98e1e92a3.tar.gz
ayatana-indicator-sound-3670698e2e0978adc1853507358864a98e1e92a3.tar.bz2
ayatana-indicator-sound-3670698e2e0978adc1853507358864a98e1e92a3.zip
Enabled "Sound Preferences" support for gnome-control-center 3
Diffstat (limited to 'src')
-rw-r--r--src/sound-service-dbus.c3
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);