X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/365e98e17eda73639515b133bb5787b8d905e86b..ceaa41889d0e8959393b8c0fce601707b9494b73:/lib/python/Plugins/SystemPlugins/VideoTune/VideoFinetune.py diff --git a/lib/python/Plugins/SystemPlugins/VideoTune/VideoFinetune.py b/lib/python/Plugins/SystemPlugins/VideoTune/VideoFinetune.py index 6286bc58..d27e84f9 100644 --- a/lib/python/Plugins/SystemPlugins/VideoTune/VideoFinetune.py +++ b/lib/python/Plugins/SystemPlugins/VideoTune/VideoFinetune.py @@ -2,7 +2,7 @@ from Screens.Screen import Screen from Components.Sources.CanvasSource import CanvasSource from Components.ActionMap import ActionMap from enigma import gFont -from enigma import RT_HALIGN_LEFT, RT_HALIGN_RIGHT, RT_VALIGN_CENTER, RT_WRAP +from enigma import RT_HALIGN_RIGHT, RT_WRAP def RGB(r,g,b): return (r<<16)|(g<<8)|b @@ -23,10 +23,10 @@ class VideoFinetune(Screen): { "1": self.testpic_brightness, "2": self.testpic_contrast, - "3": self.testpic_colors, - "4": self.testpic_filter, - "5": self.testpic_gamma, - "6": self.testpic_fubk, +# "3": self.testpic_colors, + "3": self.testpic_filter, + "4": self.testpic_gamma, + "5": self.testpic_fubk, "ok": self.callNext, "cancel": self.close, }) @@ -95,7 +95,8 @@ class VideoFinetune(Screen): c.flush() def testpic_contrast(self): - self.next = self.testpic_colors +# self.next = self.testpic_colors + self.next = self.close c = self["Canvas"]