aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-10-06 15:58:56 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-10-06 15:58:56 +0000
commit2669cc5e44c030dc749e1999c3f96d5296362a54 (patch)
tree9ff605996f76e8764dec9058f5d28f2e68d49c41 /lib/python/Components
parent29038fe91712cd61b9908279733d89abcef73ada (diff)
downloadenigma2-2669cc5e44c030dc749e1999c3f96d5296362a54.tar.gz
enigma2-2669cc5e44c030dc749e1999c3f96d5296362a54.zip
remove debug, lower priority
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/ConfigList.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/python/Components/ConfigList.py b/lib/python/Components/ConfigList.py
index e586f39d..649fa923 100644
--- a/lib/python/Components/ConfigList.py
+++ b/lib/python/Components/ConfigList.py
@@ -52,17 +52,13 @@ class ConfigList(HTMLComponent, GUIComponent, object):
n = self.getCurrent()
if self.help_window:
- print "close old help window!"
self.session.deleteDialog(self.help_window)
nh = n and n[1].helpWindow()
- print "n, nh:", n, nh
if nh is not None and self.session is not None:
- print "show new help window"
self.help_window = self.session.instantiateDialog(*nh)
self.help_window.show()
- print "config selection changed, from ", self.current, " to ", n
self.current = n
for x in self.onSelectionChanged:
x()
@@ -104,7 +100,7 @@ class ConfigListScreen:
"8": self.keyNumberGlobal,
"9": self.keyNumberGlobal,
"0": self.keyNumberGlobal
- }, -1)
+ }, -5)
self["config"] = ConfigList(list, session = session)