mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-04 07:28:39 +00:00
Fix the allocate mode not being preserved when selecting different
torrents in addtorrentdialog
This commit is contained in:
parent
a1ac27d628
commit
f7d001e7b8
2 changed files with 3 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
==== GtkUI ====
|
==== GtkUI ====
|
||||||
* Fix hiding bottom pane when no tabs are enabled upon restart
|
* Fix hiding bottom pane when no tabs are enabled upon restart
|
||||||
* Fix saving file priorities when switching torrents in the addtorrentdialog
|
* Fix saving file priorities when switching torrents in the addtorrentdialog
|
||||||
|
* Fix the allocate mode not being preserved when selecting different torrents in addtorrentdialog
|
||||||
|
|
||||||
=== Deluge 1.1.3 - (15 February 2009) ===
|
=== Deluge 1.1.3 - (15 February 2009) ===
|
||||||
==== Core ====
|
==== Core ====
|
||||||
|
|
|
@ -326,6 +326,8 @@ class AddTorrentDialog(component.Component):
|
||||||
self.glade.get_widget("entry_download_path").set_text(
|
self.glade.get_widget("entry_download_path").set_text(
|
||||||
options["download_location"])
|
options["download_location"])
|
||||||
|
|
||||||
|
self.glade.get_widget("radio_full").set_active(
|
||||||
|
not options["compact_allocation"])
|
||||||
self.glade.get_widget("radio_compact").set_active(
|
self.glade.get_widget("radio_compact").set_active(
|
||||||
options["compact_allocation"])
|
options["compact_allocation"])
|
||||||
self.glade.get_widget("spin_maxdown").set_value(
|
self.glade.get_widget("spin_maxdown").set_value(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue