[gnome-shell] popupMenu: Fix RemoteMenu items with boolean state action
- From: Florian MÃllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] popupMenu: Fix RemoteMenu items with boolean state action
- Date: Fri, 27 Apr 2012 10:30:42 +0000 (UTC)
commit 7293ddb22c3a1b97ea74e892af20e62ed3b31a3e
Author: Florian MÃllner <fmuellner gnome org>
Date: Fri Apr 27 11:57:48 2012 +0200
popupMenu: Fix RemoteMenu items with boolean state action
Stateful actions are expected to pass their state when activated,
but we currently only do this for actions with a string state.
https://bugzilla.gnome.org/show_bug.cgi?id=674932
js/ui/popupMenu.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/popupMenu.js b/js/ui/popupMenu.js
index 09a9b73..b1a06ed 100644
--- a/js/ui/popupMenu.js
+++ b/js/ui/popupMenu.js
@@ -1867,7 +1867,7 @@ const RemoteMenu = new Lang.Class({
item = new PopupSwitchMenuItem(label, action.state.get_boolean());
action.items.push(item);
specificSignalId = item.connect('toggled', Lang.bind(this, function(item) {
- this.actionGroup.activate_action(action_id, null);
+ this.actionGroup.activate_action(action_id, GLib.Variant.new_boolean(item.state));
}));
break;
case 's':
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]