From 6826db13a4988bee32507500d138595dd3d596fa Mon Sep 17 00:00:00 2001 From: Giovanni Gatti <156141003+geovnn@users.noreply.github.com> Date: Wed, 16 Oct 2024 23:11:51 +0200 Subject: [PATCH] Prevent clicks outside boost popup --- .../main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt index f908d1014..9a9fd900d 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt @@ -1309,6 +1309,7 @@ private fun BoostTypeChoicePopup( alignment = Alignment.BottomCenter, offset = IntOffset(0, iconSizePx), onDismissRequest = { visibilityState.targetState = false }, + properties = PopupProperties(focusable = true), ) { AnimatedVisibility( visibleState = visibilityState,