aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
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:49:01 +0100
commit08413feb6f7217a4ddb598dfc0ab46e80adb5f99 (patch)
tree0fbf1fcc44e1647eabcbf5d4fed823c20992935e /lib/python/Components
parentc6292b648af8c27f5c7da6fce0cdb96a53935cd4 (diff)
downloadenigma2-08413feb6f7217a4ddb598dfc0ab46e80adb5f99.tar.gz
enigma2-08413feb6f7217a4ddb598dfc0ab46e80adb5f99.zip
Components/config.py: dont show configtext input help in ConfigDirectory's
Diffstat (limited to 'lib/python/Components')
-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)):