mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
GTKUI: Autofill save path when creating torrent from remote path
This commit is contained in:
parent
36a78d8f21
commit
61c125420b
1 changed files with 3 additions and 1 deletions
|
@ -229,9 +229,11 @@ class CreateTorrentDialog:
|
|||
if is_remote:
|
||||
# This is a remote path
|
||||
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()
|
||||
if response == gtk.RESPONSE_OK:
|
||||
result = self.glade.get_widget("entry_save_path").get_text()
|
||||
result = dialog_save_path.get_text()
|
||||
else:
|
||||
dialog.hide()
|
||||
return
|
||||
|
|
Loading…
Add table
Reference in a new issue