X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/8cdc19061d56d649b298462f7e64283551d0bbf9..45e3ce941d85ae909f9cb9e350e79e765a9fd5a1:/mytest.py diff --git a/mytest.py b/mytest.py index a9c8197e..42f1e009 100644 --- a/mytest.py +++ b/mytest.py @@ -147,7 +147,13 @@ class Session: # create GUI view of this dialog assert self.desktop != None - dlg.instance = eWindow(self.desktop) + + z = 0 + for (key, value) in dlg.skinAttributes: + if key == "zPosition": + z = int(value) + + dlg.instance = eWindow(self.desktop, z) applyAllAttributes(dlg.instance, self.desktop, dlg.skinAttributes) gui = GUIOutputDevice() gui.parent = dlg.instance