mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
fix #1075 (changing priority on a whole folder)
This commit is contained in:
parent
eac2a10a12
commit
8212a66d5a
2 changed files with 12 additions and 4 deletions
|
@ -132,11 +132,19 @@ Copyright:
|
|||
indexes[node.attributes.fileIndex] = node.attributes.priority;
|
||||
}
|
||||
this.getRootNode().cascade(walk);
|
||||
|
||||
|
||||
var nodes = this.getSelectionModel().getSelectedNodes();
|
||||
Ext.each(nodes, function(node) {
|
||||
if (Ext.isEmpty(node.attributes.fileIndex)) return;
|
||||
indexes[node.attributes.fileIndex] = baseItem.filePriority;
|
||||
if (!node.isLeaf()) {
|
||||
function setPriorities(node) {
|
||||
if (Ext.isEmpty(node.attributes.fileIndex)) return;
|
||||
indexes[node.attributes.fileIndex] = baseItem.filePriority;
|
||||
}
|
||||
node.cascade(setPriorities);
|
||||
} else if (!Ext.isEmpty(node.attributes.fileIndex)) {
|
||||
indexes[node.attributes.fileIndex] = baseItem.filePriority;
|
||||
return;
|
||||
}
|
||||
});
|
||||
|
||||
var priorities = new Array(Ext.keys(indexes).length);
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue