[F] Fix lightness config reading
This commit is contained in:
parent
887f766464
commit
66ff8d06d9
1 changed files with 2 additions and 2 deletions
|
@ -299,9 +299,9 @@ def run():
|
|||
if args.scale:
|
||||
preset = preset.lighten(args.scale)
|
||||
if args.light:
|
||||
preset = preset.set_light(args.light)
|
||||
preset = preset.set_light_raw(args.light)
|
||||
if config.lightness:
|
||||
preset = preset.set_light(config.lightness)
|
||||
preset = preset.set_light_dl(config.lightness)
|
||||
|
||||
# Debug recommendations
|
||||
if args.debug_list:
|
||||
|
|
Loading…
Reference in a new issue