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

Commit a5cb1326 authored by Lucas Dupin's avatar Lucas Dupin Committed by Android (Google) Code Review
Browse files

Merge changes from topic "cuebar-ui-fix-0708" into main

* changes:
  Fix the gap between icon and its border.
  Fix the wrong height of cue bar.
parents 26e412dc 6f460319
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -288,7 +288,7 @@ fun NavBarPill(
                                                    Color.Transparent
                                                }
                                            )
                                            .height(28.dp)
                                            .height(24.dp)
                                            .padding(start = 6.dp, end = 6.dp),
                                ) {
                                    Image(
@@ -345,7 +345,7 @@ fun NavBarPill(
                                                    else -> Modifier
                                                }
                                            )
                                            .padding(3.dp)
                                            .padding(horizontal = 3.dp, vertical = 4.dp)
                                            .size(16.dp)
                                            .then(iconBorder)
                                            .clip(CircleShape),
+0 −1
Original line number Diff line number Diff line
@@ -377,7 +377,6 @@ private fun Icon(action: ActionViewModel, backgroundColor: Color, modifier: Modi
                            )
                    }
                )
                .padding(1.dp)
                .clip(CircleShape)
                .background(backgroundColor),
    )