--- src/Notification.cs.orig 2009-03-27 14:49:29.000000000 +0100 +++ src/Notification.cs 2009-03-27 14:49:52.000000000 +0100 @@ -341,13 +341,10 @@ } public void AddAction (string action, string label, ActionHandler handler) { - if (Notifications.Global.Capabilities != null && - Array.IndexOf (Notifications.Global.Capabilities, "actions") > -1) { - lock (action_map) { - action_map[action] = new ActionTuple (label, handler); - } - Update (); + lock (action_map) { + action_map[action] = new ActionTuple (label, handler); } + Update (); } public void RemoveAction (string action) {