mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 02:27:09 -07:00
- Force torrentfilesmodel list repaint when progress and priorities are updated
This commit is contained in:
parent
62604e32c0
commit
154673a99b
1 changed files with 2 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue