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

Commit f532e6e3 authored by burakov's avatar burakov
Browse files

[bc25] Fix clipped notifications in the shade, and align to the right.

Test: Manually tested by opening the notifications shade.
Test: Unit tests build and pass.
Bug: 338009491
Flag: com.android.systemui.dual_shade
Change-Id: I83a05e9b549939bab0ebd073e7d4c62da1381464
parent be4912b8
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(),
                )
            }
        }