- Fixed column sorting restoring on startup

This commit is contained in:
Christophe Dumez 2009-01-03 19:34:09 +00:00
parent c786c42bb1
commit 88f0ffe86d
2 changed files with 4 additions and 0 deletions

View file

@ -119,6 +119,8 @@ void FinishedTorrents::addTorrent(QString hash){
// Update the number of finished torrents
++nbFinished;
emit finishedTorrentsNumberChanged(nbFinished);
// Sort List
sortFinishedList();
}
// Set the color of a row in data model

View file

@ -589,6 +589,8 @@ void DownloadingTorrents::addTorrent(QString hash) {
}
++nbTorrents;
emit unfinishedTorrentsNumberChanged(nbTorrents);
// sort List
sortDownloadList();
}
void DownloadingTorrents::sortDownloadListFloat(int index, Qt::SortOrder sortOrder) {