Fix saving files in create torrent dialog, also set a default filename

when saving
This commit is contained in:
Andrew Resch 2008-10-23 13:23:26 +00:00
parent ecb80ea689
commit a2b2ce2ca5
1 changed files with 3 additions and 0 deletions

View File

@ -234,6 +234,7 @@ class CreateTorrentDialog:
file_filter.add_pattern("*")
chooser.add_filter(file_filter)
chooser.set_current_name(os.path.split(self.files_treestore[0][0])[-1] + ".torrent")
# Run the dialog
response = chooser.run()
@ -242,6 +243,7 @@ class CreateTorrentDialog:
else:
chooser.destroy()
return
chooser.destroy()
# Fix up torrent filename
if len(result) < 9:
@ -254,6 +256,7 @@ class CreateTorrentDialog:
# Get a list of trackers
trackers = [t[1] for t in self.trackers_liststore]
if len(trackers) == 0:
self.dialog.destroy()
return
# Get a list of webseeds
webseeds = []