1. Open the Nextcloud Desktop Client.
-2. Press F12 on your keyboard.
+2. Press F12 or Ctrl-L on your keyboard.
The Log Output window opens.
connect(showLogWindow, &QAction::triggered, gui, &ownCloudGui::slotToggleLogBrowser);
addAction(showLogWindow);
+ auto *showLogWindow2 = new QAction(this);
+ showLogWindow2->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_L));
+ connect(showLogWindow2, &QAction::triggered, gui, &ownCloudGui::slotToggleLogBrowser);
+ addAction(showLogWindow2);
+
connect(this, &SettingsDialog::onActivate, gui, &ownCloudGui::slotSettingsDialogActivated);
customizeStyle();