1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 23:07:59 +00:00

- Force torrentfilesmodel list repaint when progress and priorities are updated

This commit is contained in:
Christophe Dumez 2009-11-21 10:38:45 +00:00
parent 62604e32c0
commit 154673a99b

View File

@ -269,12 +269,14 @@ public:
TreeItem *item = files_index[i];
item->setProgress((float)fp[i]/(float)item->getSize());
}
emit layoutChanged();
}
void updateFilesPriorities(std::vector<int> fprio) {
for(unsigned int i=0; i<fprio.size(); ++i) {
files_index[i]->setPriority(fprio[i]);
}
emit layoutChanged();
}
std::vector<int> getFilesPriorities(unsigned int nbFiles) const {