Fix #2169 : Add Torrent Dialog 'Download Location' not set correctly when folder typed into Other->Location field

Using get_current_folder() in the file chooser will use the default folder when a folder path has been typed into the Location field rather than selected with mouse. The solution is to replace it with get_filename().

Conflicts:

	deluge/ui/gtkui/addtorrentdialog.py
This commit is contained in:
Calum Lind 2012-10-06 22:54:33 +01:00
parent 0a36baa7d7
commit a18bdcf7cd
3 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ class GtkUI(GtkPluginBase):
def on_apply_prefs(self):
log.debug("applying prefs for Extractor")
if client.is_localhost():
path = self.glade.get_widget("folderchooser_path").get_current_folder()
path = self.glade.get_widget("folderchooser_path").get_filename()
else:
path = self.glade.get_widget("entry_path").get_text()

View File

@ -418,7 +418,7 @@ class AddTorrentDialog(component.Component):
if client.is_localhost():
options["download_location"] = \
self.builder.get_object("button_location").get_current_folder()
self.builder.get_object("button_location").get_filename()
else:
options["download_location"] = \
self.builder.get_object("entry_download_path").get_text()

View File

@ -250,7 +250,7 @@ class OptionsTab(Tab):
)
if self.chk_move_completed.get_active():
if client.is_localhost():
path = self.filechooser_move_completed.get_current_folder()
path = self.filechooser_move_completed.get_filename()
else:
path = self.entry_move_completed.get_text()
client.core.set_torrent_move_completed_path(self.prev_torrent_id, path)