From 1d8c9a25452bf482bf7ecc089209bd3b8a75c4b7 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Tue, 30 Jun 2015 06:37:22 +0200 Subject: [PATCH] Show initial notification without icon. --- src/main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 456167870..6a6c2fcde 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -132,8 +132,7 @@ int main(int argc, char *argv[]) { // Setup single-instance behavior. QObject::connect(&application, SIGNAL(messageReceived(QString)), &application, SLOT(processExecutionMessage(QString))); - qApp->showGuiMessage(QSL(APP_NAME), QObject::tr("Welcome to %1 %2.").arg(APP_NAME, APP_VERSION), QSystemTrayIcon::Information, - NULL, false, qApp->icons()->fromTheme(APP_LOW_NAME)); + qApp->showGuiMessage(QSL(APP_NAME), QObject::tr("Welcome to %1 %2.").arg(APP_NAME, APP_VERSION), QSystemTrayIcon::NoIcon); // Enter global event loop. return Application::exec();