From: acid-burn Date: Mon, 21 Sep 2009 13:01:11 +0000 (+0200) Subject: VideoEnhancement/plugin.py: use correct Screen name inside preview screen, small fix X-Git-Tag: 2.6.0~59 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/03d4d7f20769bf42e9312f718d5c7923d37693db VideoEnhancement/plugin.py: use correct Screen name inside preview screen, small fix --- 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 = """ - + @@ -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 = [ ]