mirror of
https://github.com/brl/mutter.git
synced 2024-12-26 04:42:14 +00:00
output-xrandr: Don't treat 0 as invalid backlight value
Whether a value is in range depends on the backlight-min/max values, and I didn't spot anything that excludes 0 as a valid lower limit outright. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2947>
This commit is contained in:
parent
aa1eaa8120
commit
018786dab8
@ -529,7 +529,7 @@ output_get_backlight_xrandr (MetaOutput *output)
|
||||
return -1;
|
||||
|
||||
value = ((int*)buffer)[0];
|
||||
if (value > 0)
|
||||
if (value >= 0)
|
||||
return normalize_backlight (output, value);
|
||||
else
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user