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

Commit 6fe2b298 authored by Danny Burakov's avatar Danny Burakov Committed by Android (Google) Code Review
Browse files

Merge "[bc25] Fix clipped notifications in the shade, and align to the right." into main

parents 31221d89 f532e6e3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@ package com.android.systemui.notifications.ui.composable

import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.width
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
@@ -75,7 +75,7 @@ constructor(
        OverlayShade(
            modifier = modifier,
            viewModel = overlayShadeViewModel,
            horizontalArrangement = Arrangement.Start,
            horizontalArrangement = Arrangement.End,
            lockscreenContent = lockscreenContent,
        ) {
            Column {
@@ -95,7 +95,7 @@ constructor(
                    shouldPunchHoleBehindScrim = false,
                    shouldFillMaxSize = false,
                    shadeMode = ShadeMode.Dual,
                    modifier = Modifier.width(416.dp),
                    modifier = Modifier.fillMaxWidth(),
                )
            }
        }