Merge pull request #13285 from LoopsGod/command

Add CTRL + I keyboard shortcut to open statistics (command + I on Mac)
This commit is contained in:
Mike Tzou 2020-08-30 11:27:03 +08:00 committed by GitHub
commit ffb6189108
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -883,6 +883,7 @@ void MainWindow::createKeyboardShortcuts()
m_ui->actionDocumentation->setShortcut(QKeySequence::HelpContents);
m_ui->actionOptions->setShortcut(Qt::ALT + Qt::Key_O);
m_ui->actionStatistics->setShortcut(Qt::CTRL + Qt::Key_I);
m_ui->actionStart->setShortcut(Qt::CTRL + Qt::Key_S);
m_ui->actionStartAll->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_S);
m_ui->actionPause->setShortcut(Qt::CTRL + Qt::Key_P);