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

Commit 8062b683 authored by Shirley Qian's avatar Shirley Qian Committed by Android (Google) Code Review
Browse files

Merge "Apply bottom padding to nav bar pill instead of the whole nav bar ambient cue." into main

parents 415af3bb 749154c3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ fun AmbientCueContainer(
                    visible = visible,
                    expanded = expanded,
                    onShouldInterceptTouches = onShouldInterceptTouches,
                    modifier = Modifier.align(Alignment.BottomCenter).padding(bottom = 4.dp),
                    modifier = Modifier.align(Alignment.BottomCenter),
                )
            }
            is PillStyleViewModel.ShortPillStyle -> {
@@ -207,7 +207,7 @@ private fun NavBarAmbientCue(
        navBarWidth = navBarWidth,
        visible = visible,
        expanded = expanded,
        modifier = modifier,
        modifier = modifier.padding(bottom = 4.dp),
        onClick = { viewModel.expand() },
        onCloseClick = { viewModel.hide() },
    )