From 981789b49f11bce704ebb82f16d9c7158b1d29f0 Mon Sep 17 00:00:00 2001 From: Patrick von Reth Date: Wed, 23 Jul 2014 23:58:04 +0200 Subject: [PATCH] make OSX Notification Center the default backend on mac --- src/core/snore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/snore.cpp b/src/core/snore.cpp index 5d64523..a834b1b 100644 --- a/src/core/snore.cpp +++ b/src/core/snore.cpp @@ -199,7 +199,7 @@ bool SnoreCore::setPrimaryNotificationBackend() return true; } #elif defined(Q_OS_MAC) - if(d->setBackendIfAvailible("Growl")) + if(d->setBackendIfAvailible("OSX Notification Center")) { return true; }