mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 21:14:33 +00:00
Add Cmd+Delete shortcut to delete a torrent (Mac OS X)
This commit is contained in:
parent
2fea7eaef2
commit
9e3deb68de
@ -543,7 +543,11 @@ void MainWindow::createKeyboardShortcuts() {
|
||||
connect(switchRSSShortcut, SIGNAL(activated()), this, SLOT(displayRSSTab()));
|
||||
actionDocumentation->setShortcut(QKeySequence("F1"));
|
||||
actionOptions->setShortcut(QKeySequence(QString::fromUtf8("Alt+O")));
|
||||
#ifdef Q_WS_MAC
|
||||
actionDelete->setShortcut(QKeySequence("Ctrl+Backspace"));
|
||||
#else
|
||||
actionDelete->setShortcut(QKeySequence(QString::fromUtf8("Del")));
|
||||
#endif
|
||||
actionStart->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+S")));
|
||||
actionStart_All->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+Shift+S")));
|
||||
actionPause->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+P")));
|
||||
|
Loading…
x
Reference in New Issue
Block a user