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

Commit f8b8e45c authored by Jeff DeCew's avatar Jeff DeCew
Browse files

Fix the text color in the highlighted expander

Bug: 183710694
Test: manual
Change-Id: Ib95fbb4409e98004f0ea57befec3923508577cce
parent fbcde0f7
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -5284,6 +5284,11 @@ public class Notification implements Parcelable
            // Use different highlighted colors except when low-priority mode prevents that
            if (!p.mReduceHighlights) {
                pillColor = getAccentTertiaryColor(p);
                // TODO(b/183710694): The accent tertiary is currently too bright in dark mode, so
                //  we need to pick a contrasting color.
                textColor = ColorUtils.setAlphaComponent(
                        ContrastColorUtil.resolvePrimaryColor(mContext, pillColor, mInNightMode),
                        0xFF);
            }
            contentView.setInt(R.id.expand_button, "setHighlightTextColor", textColor);
            contentView.setInt(R.id.expand_button, "setHighlightPillColor", pillColor);