Browse Source

Fixed Brightness Timeout Bug

Adam Shaw 5 years ago
parent
commit
534b2e41ce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      sys.py/run.py

+ 1 - 1
sys.py/run.py

@@ -189,7 +189,7 @@ def InspectionTeam(main_screen):
                 content = f.readlines()
                 content = [x.strip() for x in content]
                 brt=int(content[0])
-                if brt > 0:
+                if brt != 1 and brt > 0:
                     last_brt = brt ## remember brt for restore
 
                     brt = 1