mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-25 09:35:16 +00:00
Fix 'always show add torrent dialog' when using classic mode
This commit is contained in:
parent
5d53128d92
commit
7415061fde
@ -168,7 +168,11 @@ class QueuedTorrents(component.Component):
|
|||||||
# Add all the torrents in the liststore
|
# Add all the torrents in the liststore
|
||||||
def add_torrent(model, path, iter, data):
|
def add_torrent(model, path, iter, data):
|
||||||
torrent_path = model.get_value(iter, 1)
|
torrent_path = model.get_value(iter, 1)
|
||||||
client.add_torrent_file([torrent_path])
|
if self.config["interactive_add"]:
|
||||||
|
component.get("AddTorrentDialog").add_from_files([torrent_path])
|
||||||
|
component.get("AddTorrentDialog").show(self.config["focus_add_dialog"])
|
||||||
|
else:
|
||||||
|
client.add_torrent_file([torrent_path])
|
||||||
|
|
||||||
self.liststore.foreach(add_torrent, None)
|
self.liststore.foreach(add_torrent, None)
|
||||||
del self.queue[:]
|
del self.queue[:]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user