Fix #655 issue where default torrent options wouldn't be set for new

torrents added to the addtorrentdialog
This commit is contained in:
Andrew Resch 2009-02-28 01:48:41 +00:00
parent 51ddc35140
commit e287e3ec33
1 changed files with 5 additions and 0 deletions

View File

@ -190,6 +190,9 @@ class AddTorrentDialog(component.Component):
[info.info_hash, info.name, filename])
self.files[info.info_hash] = info.files
self.infos[info.info_hash] = info.metadata
self.listview_torrents.get_selection().select_iter(new_row)
self.set_default_options()
self.save_torrent_options(new_row)
(model, row) = self.listview_torrents.get_selection().get_selected()
@ -215,6 +218,8 @@ class AddTorrentDialog(component.Component):
[info_hash, name, uri])
self.files[info_hash] = []
self.infos[info_hash] = None
self.listview_torrents.get_selection().select_iter(new_row)
self.set_default_options()
self.save_torrent_options(new_row)
(model, row) = self.listview_torrents.get_selection().get_selected()