mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-06 15:04:34 +08:00
- Force progress update in download list before calling sort function to make it more reliable
This commit is contained in:
parent
cc252fc70a
commit
8404eec301
1
TODO
1
TODO
@ -79,3 +79,4 @@ beta5->beta6 changelog:
|
|||||||
- BUGFIX: Made torrent deletion from hard-drive safer
|
- BUGFIX: Made torrent deletion from hard-drive safer
|
||||||
- BUGFIX: Fixed a bug when switching from finished to downloading list
|
- BUGFIX: Fixed a bug when switching from finished to downloading list
|
||||||
- BUGFIX: Showing checking progress for paused torrents too
|
- BUGFIX: Showing checking progress for paused torrents too
|
||||||
|
- BUGFIX: Fixed progress column sorting on startup
|
||||||
|
@ -234,6 +234,7 @@ void GUI::torrentChecked(QString hash) {
|
|||||||
}
|
}
|
||||||
if(!BTSession->isFinished(hash)){
|
if(!BTSession->isFinished(hash)){
|
||||||
// Delayed Sorting
|
// Delayed Sorting
|
||||||
|
downloadingTorrentTab->updateFileSizeAndProgress(hash);
|
||||||
downloadingTorrentTab->sortProgressColumnDelayed();
|
downloadingTorrentTab->sortProgressColumnDelayed();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -75,7 +75,6 @@ class DownloadingTorrents : public QWidget, public Ui::downloading{
|
|||||||
void torrentAdded(QString path, QTorrentHandle& h, bool fastResume);
|
void torrentAdded(QString path, QTorrentHandle& h, bool fastResume);
|
||||||
void torrentDuplicate(QString path);
|
void torrentDuplicate(QString path);
|
||||||
void torrentCorrupted(QString path);
|
void torrentCorrupted(QString path);
|
||||||
void updateFileSizeAndProgress(QString hash);
|
|
||||||
void portListeningFailure();
|
void portListeningFailure();
|
||||||
void setRowColor(int row, QString color);
|
void setRowColor(int row, QString color);
|
||||||
void displayDownloadingUrlInfos(QString url);
|
void displayDownloadingUrlInfos(QString url);
|
||||||
@ -91,6 +90,7 @@ class DownloadingTorrents : public QWidget, public Ui::downloading{
|
|||||||
void setBottomTabEnabled(unsigned int index, bool b);
|
void setBottomTabEnabled(unsigned int index, bool b);
|
||||||
void propertiesSelection();
|
void propertiesSelection();
|
||||||
void sortProgressColumnDelayed();
|
void sortProgressColumnDelayed();
|
||||||
|
void updateFileSizeAndProgress(QString hash);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user