aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-07-30 22:55:41 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-07-30 22:55:41 +0000
commitb8783e5b26a7dd0601bece623c4cbfe19f57977b (patch)
tree12a38d519b9de821a05de5f6050e42112eb1d333 /lib/python
parent52f0a8e06d8322e7ba5b3218fb38e69a56cdc2f4 (diff)
downloadenigma2-b8783e5b26a7dd0601bece623c4cbfe19f57977b.tar.gz
enigma2-b8783e5b26a7dd0601bece623c4cbfe19f57977b.zip
fix configElementBoolean display sense
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py
index fda44795..c17e5aa1 100644
--- a/lib/python/Components/config.py
+++ b/lib/python/Components/config.py
@@ -616,7 +616,7 @@ def getConfigListEntry(description, element):
item = b.controlType(b)
return ((description, item))
-def configElementBoolean(name, default, texts=(_("Enable"), _("Disable"))):
+def configElementBoolean(name, default, texts=(_("Disable"), _("Enable"))):
return configElement(name, configSelection, default, texts)
config.misc = ConfigSubsection()