piccoli fix

This commit is contained in:
marco
2020-12-12 18:45:21 +01:00
parent 5f45c31e82
commit ab80b4e8ce
3 changed files with 12 additions and 10 deletions
+9 -9
View File
@@ -710,12 +710,12 @@ class SearchWindow(xbmcgui.WindowXMLDialog):
if index > 0: xbmc.executebuiltin(context_commands[index])
def play(self, server):
server.globalsearch = True
run(server)
while not platformtools.is_playing():
xbmc.sleep(500)
self.close()
while platformtools.is_playing():
xbmc.sleep(500)
self.doModal()
def play(self, server):
server.globalsearch = True
run(server)
while not platformtools.is_playing():
xbmc.sleep(500)
self.close()
while platformtools.is_playing():
xbmc.sleep(500)
self.doModal()