Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e0983d15 authored by Jean Chen's avatar Jean Chen Committed by Android (Google) Code Review
Browse files

Merge "fix(HCT): High Contrast Font threshold value is different" into main

parents 2b25943f 761d0f54
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -672,7 +672,7 @@ public abstract class Layout {
        // LINT.IfChange(hct_darken)
        var lab = new double[3];
        ColorUtils.colorToLAB(color, lab);
        return lab[0] < 50.0;
        return lab[0] <= 50.0;
        // LINT.ThenChange(/libs/hwui/hwui/DrawTextFunctor.h:hct_darken)
    }