From 9475978612ce632d52aadb35a3667bcd4a1be925 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Tue, 5 Aug 2025 16:42:13 -0400 Subject: [PATCH] Fixes background of transparent posts. --- .../main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt index 7a887efe3..8c8576e6d 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt @@ -971,7 +971,7 @@ fun getGradient(backgroundColor: MutableState): Brush = colors = listOf( backgroundColor.value.copy(alpha = 0f), - backgroundColor.value, + backgroundColor.value.copy(alpha = 1f), ), )