Skip to content

Commit ad27e7f

Browse files
committed
Tune transparencies of decorations in long press menu
1 parent 05cb424 commit ad27e7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/main/java/org/schabi/newpipe/ui/components/menu/LongPressMenu.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ fun LongPressMenuHeader(
285285
// only show duration if there is a thumbnail
286286
if (item.thumbnailUrl != null) {
287287
Surface(
288-
color = Color.Black.copy(alpha = 0.6f),
288+
color = Color.Black.copy(alpha = 0.5f),
289289
contentColor = Color.White,
290290
modifier = Modifier
291291
.align(Alignment.BottomEnd)
@@ -323,7 +323,7 @@ fun LongPressMenuHeader(
323323

324324
is LongPressable.Decoration.Playlist -> {
325325
Surface(
326-
color = Color.Black.copy(alpha = 0.6f),
326+
color = Color.Black.copy(alpha = 0.4f),
327327
contentColor = Color.White,
328328
modifier = Modifier
329329
.align(Alignment.TopEnd)

0 commit comments

Comments
 (0)