From 89a936e39a696d7d4928051b31871f483dd178d1 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Tue, 29 Nov 2005 22:09:07 +0000 Subject: [PATCH] remove cursor when configElement is enabled==False --- lib/python/Components/config.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 -- 2.30.2