1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

Actually show the tray notification when a torrent finishes downloading.

This commit is contained in:
sledgehammer999 2013-04-30 23:52:32 +03:00
parent 4f667c6e7d
commit a30dc3a823

View File

@ -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()));
}