From 23431362d957ea24aeafc6c8048dd33c219dcbf0 Mon Sep 17 00:00:00 2001 From: Konstantinos Sideris Date: Sun, 21 May 2017 23:21:02 +0300 Subject: [PATCH] Properly quit app on tray icon's action closes #30 --- src/TrayIcon.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/TrayIcon.cc b/src/TrayIcon.cc index 4954044a..2673f1b0 100644 --- a/src/TrayIcon.cc +++ b/src/TrayIcon.cc @@ -15,6 +15,7 @@ * along with this program. If not, see . */ +#include #include #include "TrayIcon.h" @@ -69,7 +70,9 @@ TrayIcon::TrayIcon(const QString &filename, QWidget *parent) quitAction_ = new QAction("Quit", parent); connect(viewAction_, SIGNAL(triggered()), parent, SLOT(show())); - connect(quitAction_, SIGNAL(triggered()), parent, SLOT(close())); + connect(quitAction_, &QAction::triggered, this, [=]() { + QApplication::quit(); + }); menu->addAction(viewAction_); menu->addAction(quitAction_);