epgcache: add possibility to change the default epg cache read/write path
[enigma2.git] / lib / python / Plugins / SystemPlugins / VideoTune / VideoFinetune.py
index 6286bc5879d9d2615c2f80fc83940abcb28f9472..d27e84f953cd141f6c8eb49c78e85cc863e25cfa 100644 (file)
@@ -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"]