From 7c141b6496c7b104d65f564aa8dd99b72da050ed Mon Sep 17 00:00:00 2001 From: Kingul Date: Mon, 21 Nov 2016 14:11:50 +0200 Subject: [PATCH] fix open (no return) XBMC.Container.Update will let users to go back in search window after loading torrent, much better behaviour --- Core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core.py b/Core.py index 0de889a..ab3535a 100644 --- a/Core.py +++ b/Core.py @@ -1616,7 +1616,7 @@ class Core: 'XBMC.RunPlugin(%s)' % ('%s?action=%s&url=%s') % ( sys.argv[0], 'downloadLibtorrent', urllib.quote_plus(link))), (self.localize('Open (no return)'), - 'XBMC.ActivateWindow(Videos,%s)' % ('%s?action=%s%s') % ( + 'XBMC.Container.Update(%s)' % ('%s?action=%s%s') % ( sys.argv[0], 'openTorrent', link_url)), ] title = self.titleMake(seeds, leechers, size, title)