Remove Ctrl+A shortcut for Add Cloud Account

It is not a frequent operation and it disables the use
of Ctrl+A for select all in Editor, which is more useful.
This commit is contained in:
Alejandro Martinez
2024-05-07 12:22:29 -03:00
parent cf2e8d8096
commit 57c11e076b

View File

@@ -532,7 +532,7 @@ MainWindow::MainWindow(const QDir &home)
// default options
shareAction = new QAction(tr("Add Cloud Account..."), this);
shareAction->setShortcut(QKeySequence("Ctrl+A"));
shareAction->setShortcut(QKeySequence("")); // Ctrl+A is already in use for select all
connect(shareAction, SIGNAL(triggered(bool)), this, SLOT(addAccount()));
shareMenu->addAction(shareAction);
shareMenu->addSeparator();