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

Commit 451f3ff3 authored by Jeff DeCew's avatar Jeff DeCew
Browse files

Fix notification background color

This color isn't shown; merely used for color contrast calculations

Test: manual
Bug: 184982648
Change-Id: I6b2b49287f282fd748f075181cfa37217491b012
parent 5683fda3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6308,7 +6308,7 @@ public class Notification implements Parcelable
         * Gets the theme's background color
         */
        private @ColorInt int getDefaultBackgroundColor() {
            return obtainThemeColor(R.attr.colorBackground,
            return obtainThemeColor(R.attr.colorSurface,
                    mInNightMode ? Color.BLACK : Color.WHITE);
        }