Browse Source

- Show official documentation when pressing F1 key

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
f5fc1884b2
  1. 1
      Changelog
  2. 1
      src/GUI.cpp

1
Changelog

@ -20,6 +20,7 @@ @@ -20,6 +20,7 @@
- FEATURE: Added option to download first and last piece of a torrent main file first (for preview)
- FEATURE: Graphically display piece availability in torrent properties
- FEATURE: Dropped Qt 4.3 support (Qt >= 4.4 is now required)
- FEATURE: Show official documentation when pressing F1 key
- FEATURE: Added per-torrent super seeding mode (libtorrent >= v0.15 only)
- FEATURE: Support for storing symbolic links in .torrent files (libtorrent >= v0.15 only)
- FEATURE: Support for uTorrent interpretation of multi-tracker torrents (libtorrent >= v0.15 only)

1
src/GUI.cpp

@ -298,6 +298,7 @@ void GUI::createKeyboardShortcuts() { @@ -298,6 +298,7 @@ void GUI::createKeyboardShortcuts() {
connect(switchSearchShortcut2, SIGNAL(activated()), this, SLOT(displaySearchTab()));
switchRSSShortcut = new QShortcut(QKeySequence(tr("Alt+3", "shortcut to switch to fourth tab")), this);
connect(switchRSSShortcut, SIGNAL(activated()), this, SLOT(displayRSSTab()));
actionDocumentation->setShortcut(QKeySequence("F1"));
actionOptions->setShortcut(QKeySequence(QString::fromUtf8("Alt+O")));
actionDelete->setShortcut(QKeySequence(QString::fromUtf8("Del")));
actionStart->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+S")));

Loading…
Cancel
Save