aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/Rc.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/python/Screens/Rc.py b/lib/python/Screens/Rc.py
index 49ee1d75..39b8b7fb 100644
--- a/lib/python/Screens/Rc.py
+++ b/lib/python/Screens/Rc.py
@@ -35,19 +35,14 @@ class Rc:
for rc in rcs:
id = int(rc.attrib["id"])
self.rcs[id] = {}
- print "id:", id
for key in rc:
name = key.attrib["name"]
pos = key.attrib["pos"].split(",")
- print "name:", name
- print "pos:", pos
self.rcs[id][name] = (int(pos[0]), int(pos[1]))
def getSelectPic(self, pos):
for selectPic in self.selectpics:
if pos[1] <= selectPic[0]:
- print "pos[1]:", pos[1]
- print "selectPic[0]:", selectPic[0]
return (selectPic[1], selectPic[2])
return None