Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamila <hello@camila.codes>2022-03-02 20:22:13 +0300
committerCamila (Rebase PR Action) <hello@camila.codes>2022-03-03 14:16:09 +0300
commit2c20f81a532ad2d2e9cfb9c1bb29ddbd22106030 (patch)
treed74f65b22ba3823bf9f952237852673127342962
parenta6f2112732e8f2df952a9fd1163cefb9dd47bd45 (diff)
Add 'Help' action back.bugfix/help
I think it was a mistake that caused this. Signed-off-by: Camila <hello@camila.codes>
-rw-r--r--src/gui/systray.cpp1
1 files changed, 1 insertions, 0 deletions
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);