GTKUI: Autofill save path when creating torrent from remote path

This commit is contained in:
Calum Lind 2013-02-20 19:27:16 +00:00
parent 36a78d8f21
commit 61c125420b
1 changed files with 3 additions and 1 deletions

View File

@ -229,9 +229,11 @@ class CreateTorrentDialog:
if is_remote: if is_remote:
# This is a remote path # This is a remote path
dialog = self.glade.get_widget("remote_save_dialog") dialog = self.glade.get_widget("remote_save_dialog")
dialog_save_path = self.glade.get_widget("entry_save_path")
dialog_save_path.set_text(self.files_treestore[0][0].rstrip("\\/") + ".torrent")
response = dialog.run() response = dialog.run()
if response == gtk.RESPONSE_OK: if response == gtk.RESPONSE_OK:
result = self.glade.get_widget("entry_save_path").get_text() result = dialog_save_path.get_text()
else: else:
dialog.hide() dialog.hide()
return return