From: Stefan Pluecken Date: Tue, 29 Nov 2005 22:09:07 +0000 (+0000) Subject: remove cursor when configElement is enabled==False X-Git-Tag: 2.6.0~4890 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/89a936e39a696d7d4928051b31871f483dd178d1?hp=e7a77b87eee22c35e93cbd42b329dc5165e29144 remove cursor when configElement is enabled==False --- diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 7137845f..037b66b1 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -260,8 +260,11 @@ class configSequence: num += 1 # only mark cursor when we are selected # (this code is heavily ink optimized!) - return ("mtext"[1-selected:], value, [mPos]) - + if (self.parent.enabled == True): + return ("mtext"[1-selected:], value, [mPos]) + else: + return ("text", value) + class configText: # used as first parameter # is the text of a fixed size or is the user able to extend the length of the text