mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix setting file priorities on folders
This commit is contained in:
parent
57f1409a55
commit
761586b2a8
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ Deluge 0.9.09 - "1.0.0_RC9" (10 September 2008)
|
|||
GtkUI:
|
||||
* Fix add torrent dialog closing preventing another dialog from being shown
|
||||
* Fix various issues when not using English
|
||||
|
||||
* Fix setting file priorities on folders
|
||||
|
||||
Deluge 0.9.08 - "1.0.0_RC8" (27 August 2008)
|
||||
Core:
|
||||
|
|
|
@ -348,7 +348,7 @@ class FilesTab(Tab):
|
|||
while i:
|
||||
selected.append(self.treestore[i][5])
|
||||
if self.treestore.iter_has_child(i):
|
||||
get_selected_files(i, selected)
|
||||
get_iter_children(i, selected)
|
||||
i = self.treestore.iter_next(i)
|
||||
|
||||
selected = []
|
||||
|
|
Loading…
Add table
Reference in a new issue