From 2c20f81a532ad2d2e9cfb9c1bb29ddbd22106030 Mon Sep 17 00:00:00 2001 From: Camila Date: Wed, 2 Mar 2022 18:22:13 +0100 Subject: [PATCH] Add 'Help' action back. I think it was a mistake that caused this. Signed-off-by: Camila --- src/gui/systray.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/systray.cpp b/src/gui/systray.cpp index b5c8d6556..992343bd5 100644 --- a/src/gui/systray.cpp +++ b/src/gui/systray.cpp @@ -108,6 +108,7 @@ Systray::Systray() auto pauseAction = contextMenu->addAction(tr("Pause sync"), this, &Systray::slotPauseAllFolders); auto resumeAction = contextMenu->addAction(tr("Resume sync"), this, &Systray::slotUnpauseAllFolders); contextMenu->addAction(tr("Settings"), this, &Systray::openSettings); + contextMenu->addAction(tr("Help"), this, &Systray::openHelp); contextMenu->addAction(tr("Exit %1").arg(Theme::instance()->appNameGUI()), this, &Systray::shutdown); setContextMenu(contextMenu); -- 2.30.2