From 03d4d7f20769bf42e9312f718d5c7923d37693db Mon Sep 17 00:00:00 2001 From: acid-burn Date: Mon, 21 Sep 2009 15:01:11 +0200 Subject: [PATCH] VideoEnhancement/plugin.py: use correct Screen name inside preview screen, small fix --- lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py b/lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py index a2cb774..03fbe95 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 = """ - + @@ -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 = [ ] -- 2.7.4