From a30dc3a8231829061e007a8e7f32f254f2d75407 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 51030de16..7935b370b 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -528,7 +528,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())); }