From 65e1e4a202598c0ac6562dd15436aaf07ab9b902 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 9 Feb 2016 16:42:40 +0100 Subject: [PATCH] Mark the accept button as primary --- apps/files_sharing/lib/notifier.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/lib/notifier.php b/apps/files_sharing/lib/notifier.php index 06067a5ee4..27e4e2565f 100644 --- a/apps/files_sharing/lib/notifier.php +++ b/apps/files_sharing/lib/notifier.php @@ -64,7 +64,8 @@ class Notifier implements INotifier { case 'accept': $action->setParsedLabel( (string) $l->t('Accept') - ); + ) + ->setPrimary(true); break; case 'decline':