diff options
| author | acid-burn <acid-burn@opendreambox.org> | 2010-06-10 15:19:12 +0200 |
|---|---|---|
| committer | acid-burn <acid-burn@opendreambox.org> | 2010-06-10 15:19:12 +0200 |
| commit | 43f543871592eda0489f6dcbf3ad901309aaa9f9 (patch) | |
| tree | cd10694220f7afbab8d7991b460291300cab615b /lib/python/Plugins/SystemPlugins/Videomode | |
| parent | f7a3796a9a0f2d5e9fad4c4974193a55a8bae08f (diff) | |
| download | enigma2-43f543871592eda0489f6dcbf3ad901309aaa9f9.tar.gz enigma2-43f543871592eda0489f6dcbf3ad901309aaa9f9.zip | |
add missing dm800se color oled screens. refs #530
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode')
| -rwxr-xr-x[-rw-r--r--] | lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py index 3c76685e..9b9044ee 100644..100755 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py @@ -12,14 +12,22 @@ from Tools.HardwareInfo import HardwareInfo config.misc.showtestcard = ConfigBoolean(default = False) class VideoWizardSummary(WizardSummary): - skin = """ - <screen position="0,0" size="132,64"> + skin = ( + """<screen name="VideoWizardSummary" position="0,0" size="132,64" id="1"> <widget name="text" position="6,4" size="120,40" font="Regular;12" transparent="1" /> <widget source="parent.list" render="Label" position="6,40" size="120,21" font="Regular;14"> <convert type="StringListSelection" /> </widget> <!--widget name="pic" pixmap="%s" position="6,22" zPosition="10" size="64,64" transparent="1" alphatest="on"/--> - </screen>""" #% (resolveFilename(SCOPE_PLUGINS, "SystemPlugins/Videomode/lcd_Scart.png")) + </screen>""", + """<screen name="VideoWizardSummary" position="0,0" size="96,64" id="2"> + <widget name="text" position="0,4" size="96,40" font="Regular;12" transparent="1" /> + <widget source="parent.list" render="Label" position="0,40" size="96,21" font="Regular;14"> + <convert type="StringListSelection" /> + </widget> + <!--widget name="pic" pixmap="%s" position="0,22" zPosition="10" size="64,64" transparent="1" alphatest="on"/--> + </screen>""") + #% (resolveFilename(SCOPE_PLUGINS, "SystemPlugins/Videomode/lcd_Scart.png")) def __init__(self, session, parent): WizardSummary.__init__(self, session, parent) |
