diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-07-30 22:55:41 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-07-30 22:55:41 +0000 |
| commit | b8783e5b26a7dd0601bece623c4cbfe19f57977b (patch) | |
| tree | 12a38d519b9de821a05de5f6050e42112eb1d333 /lib/python/Components | |
| parent | 52f0a8e06d8322e7ba5b3218fb38e69a56cdc2f4 (diff) | |
| download | enigma2-b8783e5b26a7dd0601bece623c4cbfe19f57977b.tar.gz enigma2-b8783e5b26a7dd0601bece623c4cbfe19f57977b.zip | |
fix configElementBoolean display sense
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/config.py | 2 |
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() |
