Tweaks to per torrent preferences.

This commit is contained in:
Alex Dedul 2007-08-09 15:24:54 +00:00
parent e85a521c43
commit 259e43b29a
2 changed files with 2 additions and 1 deletions

View File

@ -813,6 +813,8 @@ class Manager:
unique_ID = deluge_core.add_torrent(torrent.filename,
torrent.save_dir,
torrent.compact)
# Apply per torrent prefs after torrent added to core
self.apply_prefs_per_torrent(unique_ID)
except DelugeError, e:
print "Error:", e
self.state.torrents.remove(torrent)

View File

@ -1101,7 +1101,6 @@ class DelugeGTK:
files_dialog.get_priorities())
if files_dialog.is_private_flag_checked():
self.manager.set_priv(unique_id, True)
self.manager.apply_prefs_per_torrent(unique_id)
else:
return
else: