Add 'Help' action back.
authorCamila <hello@camila.codes>
Wed, 2 Mar 2022 17:22:13 +0000 (18:22 +0100)
committerCamila (Rebase PR Action) <hello@camila.codes>
Thu, 3 Mar 2022 11:16:09 +0000 (11:16 +0000)
I think it was a mistake that caused this.

Signed-off-by: Camila <hello@camila.codes>
src/gui/systray.cpp

index b5c8d6556ac36da6e1e00eba042165062bf270f7..992343bd5349568e9d6e5d4229d2ab611977c425 100644 (file)
@@ -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);