aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-01-02 13:48:36 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-01-02 13:48:36 +0100
commitaa64f107516da5aaff79d6d096f8014f65ea3283 (patch)
tree8d9679c001999997692f3b6d1eddc857c5766ba7 /lib/python
parentc9fe35f9b262f930740fe08ff82de53e486cd910 (diff)
downloadenigma2-aa64f107516da5aaff79d6d096f8014f65ea3283.tar.gz
enigma2-aa64f107516da5aaff79d6d096f8014f65ea3283.zip
Components/config.py: dont show configtext input help in ConfigDirectory's
Diffstat (limited to 'lib/python')
-rwxr-xr-xlib/python/Components/config.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py
index a6007b10..471b59ec 100755
--- a/lib/python/Components/config.py
+++ b/lib/python/Components/config.py
@@ -1138,6 +1138,9 @@ class ConfigDirectory(ConfigText):
else:
return ConfigText.getMulti(self, selected)
+ def onSelect(self, session):
+ self.allmarked = (self.value != "")
+
# a slider.
class ConfigSlider(ConfigElement):
def __init__(self, default = 0, increment = 1, limits = (0, 100)):