From db904fb24e498db053e600dea7ebf9a55b9b75ad Mon Sep 17 00:00:00 2001 From: richou Date: Thu, 13 Jul 2023 18:50:13 +0200 Subject: [PATCH] V2 Cinema Mode- Hotfix stability --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index cec0289..92cffb7 100644 --- a/main.py +++ b/main.py @@ -17,9 +17,9 @@ def __init__(self, *args, **kwargs): self.NormalBox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) self.ImmersiveBox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) - #self.lightbar = Gtk.LevelBar(orientation=Gtk.Orientation.HORIZONTAL) - #self.lightbar.set_min_value(0) - #self.lightbar.set_max_value(255) + self.lightbar = Gtk.LevelBar(orientation=Gtk.Orientation.HORIZONTAL) + self.lightbar.set_min_value(0) + self.lightbar.set_max_value(255) self.set_child(self.Mainbox) self.initModeSelect()