X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/3c95a4fba21a6925cbefad5066785b80d88c4659..4e7d6e39131395019b612d477ac4c563118121f5:/skin.py diff --git a/skin.py b/skin.py old mode 100644 new mode 100755 index 5b8ce650..064fd219 --- a/skin.py +++ b/skin.py @@ -148,6 +148,8 @@ def applySingleAttribute(guiObject, desktop, attrib, value, scale = ((1,1),(1,1) guiObject.setFont(parseFont(value, scale)) elif attrib == 'zPosition': guiObject.setZPosition(int(value)) + elif attrib == 'itemHeight': + guiObject.setItemHeight(int(value)) elif attrib in ("pixmap", "backgroundPixmap", "selectionPixmap"): ptr = loadPixmap(value, desktop) # this should already have been filename-resolved. if attrib == "pixmap":