Hi,
I have a simple plugin that pops up the on-screen keyboard, and then uses the text provided to search and return any results. It's been working for years, but the latest nightlies have been causing problems, with the loading directory dialog now coming up straight away, on top of the keyboard, preventing input.
Just wondering if there is any other way to get this working again? It stopped working with the "20120805-c1c650c-master" nightly. Or perhaps it's just a bug that's been introduced?
Thanks!
I have a simple plugin that pops up the on-screen keyboard, and then uses the text provided to search and return any results. It's been working for years, but the latest nightlies have been causing problems, with the loading directory dialog now coming up straight away, on top of the keyboard, preventing input.
Code:
keyboard = xbmc.Keyboard(searchtext, 'Enter text for search')
keyboard.doModal()
if (keyboard.isConfirmed()):
searchtext = urllib.quote_plus(keyboard.getText())
Just wondering if there is any other way to get this working again? It stopped working with the "20120805-c1c650c-master" nightly. Or perhaps it's just a bug that's been introduced?
Thanks!