Move sensitivity check to a more appropriate place for move completed on add torrent dialog.

This commit is contained in:
Chase Sterling 2012-11-02 19:25:24 -04:00
parent e53413902c
commit 0a9fe242e7
1 changed files with 1 additions and 2 deletions

View File

@ -169,8 +169,6 @@ class AddTorrentDialog(component.Component):
self.glade.get_widget("button_move_completed_location").hide() self.glade.get_widget("button_move_completed_location").hide()
self.glade.get_widget("entry_move_completed_path").show() self.glade.get_widget("entry_move_completed_path").show()
self._on_chk_move_completed_toggled(self.glade.get_widget("chk_move_completed"))
self.dialog.set_transient_for(component.get("MainWindow").window) self.dialog.set_transient_for(component.get("MainWindow").window)
self.dialog.present() self.dialog.present()
if focus: if focus:
@ -401,6 +399,7 @@ class AddTorrentDialog(component.Component):
options["prioritize_first_last_pieces"]) options["prioritize_first_last_pieces"])
self.glade.get_widget("chk_move_completed").set_active( self.glade.get_widget("chk_move_completed").set_active(
options["move_completed"]) options["move_completed"])
self._on_chk_move_completed_toggled(self.glade.get_widget("chk_move_completed"))
def save_torrent_options(self, row=None): def save_torrent_options(self, row=None):
# Keeps the torrent options dictionary up-to-date with what the user has # Keeps the torrent options dictionary up-to-date with what the user has