mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +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:
|
GtkUI:
|
||||||
* Fix add torrent dialog closing preventing another dialog from being shown
|
* Fix add torrent dialog closing preventing another dialog from being shown
|
||||||
* Fix various issues when not using English
|
* Fix various issues when not using English
|
||||||
|
* Fix setting file priorities on folders
|
||||||
|
|
||||||
Deluge 0.9.08 - "1.0.0_RC8" (27 August 2008)
|
Deluge 0.9.08 - "1.0.0_RC8" (27 August 2008)
|
||||||
Core:
|
Core:
|
||||||
|
|
|
@ -348,7 +348,7 @@ class FilesTab(Tab):
|
||||||
while i:
|
while i:
|
||||||
selected.append(self.treestore[i][5])
|
selected.append(self.treestore[i][5])
|
||||||
if self.treestore.iter_has_child(i):
|
if self.treestore.iter_has_child(i):
|
||||||
get_selected_files(i, selected)
|
get_iter_children(i, selected)
|
||||||
i = self.treestore.iter_next(i)
|
i = self.treestore.iter_next(i)
|
||||||
|
|
||||||
selected = []
|
selected = []
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue