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:
Florian Müllner 2013-10-26 04:40:22 +02:00
parent dac513e046
commit 34e75fc595

View File

@ -759,7 +759,7 @@ const GtkNotificationDaemonNotification = new Lang.Class({
},
_onButtonClicked: function(button) {
let { "action": action, "action-target": actionTarget } = button;
let { 'action': action, 'target': actionTarget } = button;
this._activateAction(action.unpack(), actionTarget);
},