diff options
-rw-r--r-- | src/empathy-status-icon.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/empathy-status-icon.c b/src/empathy-status-icon.c index 08129b61d..7b016e13e 100644 --- a/src/empathy-status-icon.c +++ b/src/empathy-status-icon.c @@ -152,6 +152,16 @@ add_notification_actions (EmpathyStatusIcon *self, self, NULL); break; + case EMPATHY_EVENT_TYPE_TRANSFER: + notify_notification_add_action (notification, + "decline", _("Decline"), (NotifyActionCallback) notification_decline_cb, + self, NULL); + + notify_notification_add_action (notification, + "accept", _("Accept"), (NotifyActionCallback) notification_approve_cb, + self, NULL); + break; + default: break; } |