Browse Source

Merge pull request #1060 from alderz/master

Add a keyboard shortcut to "Add link to torrent" and fix some png sRGB profiles.
adaptive-webui-19844
sledgehammer999 11 years ago
parent
commit
1c2b54a935
  1. BIN
      src/Icons/magnet.png
  2. BIN
      src/Icons/skin/checking.png
  3. BIN
      src/Icons/skin/downloading.png
  4. BIN
      src/Icons/skin/error.png
  5. BIN
      src/Icons/skin/filteractive.png
  6. BIN
      src/Icons/skin/filterall.png
  7. BIN
      src/Icons/skin/filterinactive.png
  8. BIN
      src/Icons/skin/paused.png
  9. BIN
      src/Icons/skin/stalledDL.png
  10. BIN
      src/Icons/skin/stalledUP.png
  11. BIN
      src/Icons/skin/uploading.png
  12. 1
      src/mainwindow.cpp

BIN
src/Icons/magnet.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

BIN
src/Icons/skin/checking.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 593 B

BIN
src/Icons/skin/downloading.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 590 B

BIN
src/Icons/skin/error.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 426 B

BIN
src/Icons/skin/filteractive.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 522 B

BIN
src/Icons/skin/filterall.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 443 B

BIN
src/Icons/skin/filterinactive.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 495 B

BIN
src/Icons/skin/paused.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 359 B

BIN
src/Icons/skin/stalledDL.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 538 B

BIN
src/Icons/skin/stalledUP.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 591 B

BIN
src/Icons/skin/uploading.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 583 B

1
src/mainwindow.cpp

@ -555,6 +555,7 @@ void MainWindow::fullDiskError(const QTorrentHandle& h, QString msg) const {
void MainWindow::createKeyboardShortcuts() { void MainWindow::createKeyboardShortcuts() {
actionCreate_torrent->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+N"))); actionCreate_torrent->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+N")));
actionOpen->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+O"))); actionOpen->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+O")));
actionDownload_from_URL->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+Shift+O")));
actionExit->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+Q"))); actionExit->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+Q")));
switchTransferShortcut = new QShortcut(QKeySequence("Alt+1"), this); switchTransferShortcut = new QShortcut(QKeySequence("Alt+1"), this);
connect(switchTransferShortcut, SIGNAL(activated()), this, SLOT(displayTransferTab())); connect(switchTransferShortcut, SIGNAL(activated()), this, SLOT(displayTransferTab()));

Loading…
Cancel
Save