mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
Fix remote save path dialog not disappearing after creating a torrent
This commit is contained in:
parent
de25c17af1
commit
4f134731df
1 changed files with 4 additions and 2 deletions
|
@ -224,11 +224,14 @@ class CreateTorrentDialog:
|
|||
is_remote = self.files_treestore[0][1] == gtk.STOCK_NETWORK
|
||||
if is_remote:
|
||||
# This is a remote path
|
||||
response = self.glade.get_widget("remote_save_dialog").run()
|
||||
dialog = self.glade.get_widget("remote_save_dialog")
|
||||
response = dialog.run()
|
||||
if response == gtk.RESPONSE_OK:
|
||||
result = self.glade.get_widget("entry_save_path").get_text()
|
||||
else:
|
||||
dialog.hide()
|
||||
return
|
||||
dialog.hide()
|
||||
else:
|
||||
# Setup the filechooserdialog
|
||||
chooser = gtk.FileChooserDialog(_("Save .torrent file"),
|
||||
|
@ -340,7 +343,6 @@ class CreateTorrentDialog:
|
|||
trackers,
|
||||
add_to_session).addCallback(hide_progress)
|
||||
|
||||
chooser.destroy()
|
||||
self.dialog.destroy()
|
||||
|
||||
def create_torrent(self, path, tracker, piece_length, progress, comment, target,
|
||||
|
|
Loading…
Add table
Reference in a new issue