I have inherited a script that I am changing.
The original addon had something like this:
elif mode == MODE4:
and it works good.
I made a class base on WindowDialog and when i do
My dialog appears BEHIND the progress dialog and its unusable.
Not sure what I am doing wrong.
The original addon had something like this:
elif mode == MODE4:
Code:
keyboard = xbmc.Keyboard()
keyboard.doModal()
if (keyboard.isConfirmed()):
arg = keyboard.getText()
doSearch(arg, True)
and it works good.
I made a class base on WindowDialog and when i do
Code:
elif mode == MODE4ex:
mydisplay = MyClass()
mydisplay .doModal()
My dialog appears BEHIND the progress dialog and its unusable.
Not sure what I am doing wrong.