From 89aa7bc1d9b2255c4313361bff4ef6315585848c Mon Sep 17 00:00:00 2001 From: croneter Date: Sun, 2 Dec 2018 15:59:05 +0100 Subject: [PATCH] Fix user select dialog not opening --- resources/lib/windows/userselect.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/lib/windows/userselect.py b/resources/lib/windows/userselect.py index fccd759e..d68ac1ad 100644 --- a/resources/lib/windows/userselect.py +++ b/resources/lib/windows/userselect.py @@ -196,6 +196,11 @@ def start(): aborted : bool True if the user cancelled the dialog """ + # Fix for: + # DEBUG: Activating window ID: 13000 + # INFO: Activate of window '13000' refused because there are active modal dialogs + # DEBUG: Activating window ID: 13000 + xbmc.executebuiltin("Dialog.Close(all, true)") w = UserSelectWindow.open() user, aborted = w.user, w.aborted del w