From: Camila Date: Wed, 2 Mar 2022 17:22:13 +0000 (+0100) Subject: Add 'Help' action back. X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~17^2~128^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2c20f81a532ad2d2e9cfb9c1bb29ddbd22106030;p=nextcloud-desktop.git Add 'Help' action back. I think it was a mistake that caused this. Signed-off-by: Camila --- 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);