From b8783e5b26a7dd0601bece623c4cbfe19f57977b Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Sun, 30 Jul 2006 22:55:41 +0000 Subject: [PATCH] fix configElementBoolean display sense --- lib/python/Components/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.30.2