notificationDaemon: Fix button parameter name
Gio ended up using 'target' rather than 'action-target'. https://bugzilla.gnome.org/show_bug.cgi?id=710596
This commit is contained in:
parent
dac513e046
commit
34e75fc595
@ -759,7 +759,7 @@ const GtkNotificationDaemonNotification = new Lang.Class({
|
|||||||
},
|
},
|
||||||
|
|
||||||
_onButtonClicked: function(button) {
|
_onButtonClicked: function(button) {
|
||||||
let { "action": action, "action-target": actionTarget } = button;
|
let { 'action': action, 'target': actionTarget } = button;
|
||||||
this._activateAction(action.unpack(), actionTarget);
|
this._activateAction(action.unpack(), actionTarget);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user