mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-31 12:48:04 -06:00
BUGFIX: Fix file filtering in complex torrents
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
- BUGFIX: Fix compilation with Qt 4.4
|
||||
- BUGFIX: Fix Web UI compatibility with Safari
|
||||
- BUGFIX: Fix progress display with cleanlook style
|
||||
- BUGFIX: Fix file filtering in complex torrents
|
||||
|
||||
* Sun Mar 14 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.2.0
|
||||
- FEATURE: User can set alternative speed limits for fast toggling
|
||||
|
||||
@@ -97,6 +97,7 @@ public:
|
||||
TreeItem(QList<QVariant> data) {
|
||||
parentItem = 0;
|
||||
type = ROOT;
|
||||
Q_ASSERT(data.size() == 4);
|
||||
itemData = data;
|
||||
total_done = 0;
|
||||
}
|
||||
@@ -201,12 +202,13 @@ public:
|
||||
return itemData.value(3).toInt();
|
||||
}
|
||||
|
||||
void setPriority(int new_prio, bool update_children=true) {
|
||||
void setPriority(int new_prio, bool update_children=true, bool update_parent=true) {
|
||||
int old_prio = getPriority();
|
||||
if(old_prio != new_prio) {
|
||||
qDebug("setPriority(%s, %d)", qPrintable(getName()), new_prio);
|
||||
itemData.replace(3, new_prio);
|
||||
// Update parent
|
||||
if(parentItem) {
|
||||
if(update_parent && parentItem) {
|
||||
parentItem->updateSize();
|
||||
parentItem->updateProgress();
|
||||
parentItem->updatePriority();
|
||||
@@ -215,9 +217,13 @@ public:
|
||||
// Update children
|
||||
if(update_children) {
|
||||
foreach(TreeItem* child, childItems) {
|
||||
child->setPriority(new_prio);
|
||||
child->setPriority(new_prio, true, false);
|
||||
}
|
||||
}
|
||||
if(type==FOLDER) {
|
||||
updateSize();
|
||||
updateProgress();
|
||||
}
|
||||
}
|
||||
|
||||
void updatePriority() {
|
||||
|
||||
Reference in New Issue
Block a user