diff --git a/README.md b/README.md index 28edb26..337eedd 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # plugin.program.autocompletion Plugin to provide autocompletion for the virtual keyboard (needs skin support) -Will be working only with https://github.com/xulek/script.module.autocompletion -The autocompletion is limited to a global/kodi builtin search. With plugins cause Kodi19 application to crash. This is a 99% KODI bug. + +Resolved crash under Kodi 18.x due to multiple busy dialogs. Tested with youtube and vimeo plugins on Rpi4 (Retropie / Kodi 18.7) diff --git a/addon.xml b/addon.xml index 93e3380..b42eba2 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + diff --git a/plugin.py b/plugin.py index 3a795dd..7fb6f75 100755 --- a/plugin.py +++ b/plugin.py @@ -45,7 +45,7 @@ def pass_list_to_skin(data=[], handle=None, limit=False): if data: items = create_listitems(data) xbmcplugin.addDirectoryItems(handle=handle, items=[(i.getProperty("path"), i, False) for i in items], totalItems=len(items)) - + xbmc.executebuiltin('Dialog.Close(busydialog)') # Fix Kodi 18.x xbmcplugin.endOfDirectory(handle)