From 76b6d4ee2f70daa980dbc56d53d9194c08d14422 Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Tue, 30 Apr 2013 23:52:32 +0300 Subject: [PATCH] Actually show the tray notification when a torrent finishes downloading. --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 07ad1af65..672a970b0 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -530,7 +530,7 @@ void MainWindow::balloonClicked() { // called when a torrent has finished void MainWindow::finishedTorrent(const QTorrentHandle& h) const { - if (!TorrentPersistentData::isSeed(h.hash())) + if (TorrentPersistentData::isSeed(h.hash())) showNotificationBaloon(tr("Download completion"), tr("%1 has finished downloading.", "e.g: xxx.avi has finished downloading.").arg(h.name())); }