diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-04-15 13:12:32 -0400 |
---|---|---|
committer | Bazaar Package Importer <james.westby@ubuntu.com> | 2011-04-15 13:12:32 -0400 |
commit | 2cb98e6af52f6e09c755794af288007dc83ea487 (patch) | |
tree | 92506d37c622f1825bea63f3b2fed382da4dc769 /debian/patches/lp_759390.patch | |
parent | 0421dfae64f2f408ac0f764c4eb6117a33fecc3b (diff) | |
download | ayatana-indicator-sound-2cb98e6af52f6e09c755794af288007dc83ea487.tar.gz ayatana-indicator-sound-2cb98e6af52f6e09c755794af288007dc83ea487.tar.bz2 ayatana-indicator-sound-2cb98e6af52f6e09c755794af288007dc83ea487.zip |
* debian/patches/lp_759390.patch
- Sound Preferences link doesn't work in gnome3 (LP: #759390)
Diffstat (limited to 'debian/patches/lp_759390.patch')
-rw-r--r-- | debian/patches/lp_759390.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/debian/patches/lp_759390.patch b/debian/patches/lp_759390.patch new file mode 100644 index 0000000..5a63311 --- /dev/null +++ b/debian/patches/lp_759390.patch @@ -0,0 +1,14 @@ +=== modified file 'src/sound-service-dbus.c' +--- src/sound-service-dbus.c 2011-04-01 12:59:32 +0000 ++++ src/sound-service-dbus.c 2011-04-13 05:23:24 +0000 +@@ -200,7 +200,8 @@ + { + 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); + |