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

Commit 7e382113 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[Dual Shade] Remove the opaque color behind the shade when blur is off." into main

parents dedfdb2b 2c03eecb
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -195,7 +195,12 @@ object OverlayShade {
        val ScrimBackground: Color
            @Composable
            @ReadOnlyComposable
            get() = Color(notificationScrim(LocalContext.current, Flags.notificationShadeBlur()))
            get() =
                if (Flags.notificationShadeBlur()) {
                    Color(notificationScrim(LocalContext.current, /* blurSupported= */ true))
                } else {
                    Color.Transparent
                }

        val PanelBackground: Color
            @Composable