skin.py: another small fix for non color oled displays
authorghost <andreas.monzner@multimedia-labs.de>
Fri, 4 Jun 2010 13:55:28 +0000 (15:55 +0200)
committerghost <andreas.monzner@multimedia-labs.de>
Thu, 10 Jun 2010 12:46:46 +0000 (14:46 +0200)
skin.py

diff --git a/skin.py b/skin.py
index 542c271..a20f3eb 100755 (executable)
--- a/skin.py
+++ b/skin.py
@@ -403,9 +403,9 @@ def lookupScreen(name, style_id):
                for x in skin.findall("screen"):
                        if x.attrib.get('name', '') == name:
                                screen_style_id = x.attrib.get('id', None)
-                               if screen_style_id is None and name.find('Summary') > 0:
+                               if screen_style_id is None and name.find('ummary') > 0:
                                        screen_style_id = 1
-                               if screen_style_id is None or screen_style_id == style_id:
+                               if screen_style_id is None or int(screen_style_id) == style_id:
                                        return x, path
        return None, None