mainwindow: Remove 'Open config in text editor' menu action

Retired because we have a settings tabs now
This commit is contained in:
2022-06-13 21:55:14 +02:00
parent b108cb7151
commit 0d2e518000
2 changed files with 0 additions and 12 deletions

View File

@ -192,12 +192,6 @@ void MainWindow::connectSignals()
QMessageBox::about(this, "About looqs", html);
});
connect(ui->menuOpenConfigInTextEditorAction, &QAction::triggered, this,
[this](bool checked)
{
QSettings setting;
QDesktopServices::openUrl(setting.fileName());
});
connect(ui->menuAboutQtAction, &QAction::triggered, this,
[this](bool checked) { QMessageBox::aboutQt(this, "About Qt"); });
connect(ui->menuSyncIndexAction, &QAction::triggered, this, &MainWindow::startIndexSync);