Fix control center panel for audio.

It is "sound", not "volume".
This commit is contained in:
Giovanni Campagna 2010-10-20 21:24:15 +02:00
parent 0547a582d1
commit ac470b44ef

View File

@ -60,7 +60,7 @@ Indicator.prototype = {
this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem());
this.menu.addAction(_("Sound Preferences"), function() { this.menu.addAction(_("Sound Preferences"), function() {
let p = new Shell.Process({ args: ['gnome-control-center', 'volume'] }); let p = new Shell.Process({ args: ['gnome-control-center', 'sound'] });
p.run(); p.run();
}); });