diff options
| author | acid-burn <acidburn@opendreambox.org> | 2009-09-21 15:01:11 +0200 |
|---|---|---|
| committer | acid-burn <acidburn@opendreambox.org> | 2009-09-21 15:01:11 +0200 |
| commit | 03d4d7f20769bf42e9312f718d5c7923d37693db (patch) | |
| tree | 6ebee9ce7c2bf09fbd4e6743075222bf4548f508 /lib/python/Plugins/SystemPlugins/VideoEnhancement | |
| parent | 655614dbacf97de7347619a9a746daa28f9ef887 (diff) | |
| download | enigma2-03d4d7f20769bf42e9312f718d5c7923d37693db.tar.gz enigma2-03d4d7f20769bf42e9312f718d5c7923d37693db.zip | |
VideoEnhancement/plugin.py: use correct Screen name inside preview screen, small fix
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/VideoEnhancement')
| -rwxr-xr-x | lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py b/lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py index a2cb774e..03fbe95c 100755 --- a/lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py +++ b/lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py @@ -323,7 +323,7 @@ class VideoEnhancementSetup(Screen, ConfigListScreen): class VideoEnhancementPreview(Screen, ConfigListScreen): skin = """ - <screen name="VideoEnhancementSetup" position="90,430" size="560,110" title="VideoEnhancementSetup"> + <screen name="VideoEnhancementPreview" position="90,430" size="560,110" title="VideoEnhancementPreview"> <ePixmap pixmap="skin_default/buttons/red.png" position="0,0" size="140,40" alphatest="on" /> <ePixmap pixmap="skin_default/buttons/green.png" position="140,0" size="140,40" alphatest="on" /> <widget name="key_red" position="0,0" zPosition="1" size="140,40" font="Regular;20" halign="center" valign="center" backgroundColor="#9f1313" transparent="1" /> @@ -352,6 +352,10 @@ class VideoEnhancementPreview(Screen, ConfigListScreen): self["key_green"] = Button(_("OK")) self.createSetup() + self.onLayoutFinish.append(self.layoutFinished) + + def layoutFinished(self): + self.setTitle(_("Video enhancement preview")) def createSetup(self): self.list = [ ] |
