From 54d52e0b779de1b8a6f403f2339a65e64847d2a5 Mon Sep 17 00:00:00 2001 From: Giovanni Gatti <156141003+geovnn@users.noreply.github.com> Date: Mon, 7 Oct 2024 17:38:05 +0200 Subject: [PATCH] Prevent clicks outside reaction and zap popups --- .../java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt | 3 +++ 1 file changed, 3 insertions(+) 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 45fc0e3a5..facfb3f56 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 @@ -89,6 +89,7 @@ import androidx.compose.ui.unit.TextUnit import androidx.compose.ui.unit.dp import androidx.compose.ui.unit.sp import androidx.compose.ui.window.Popup +import androidx.compose.ui.window.PopupProperties import androidx.core.content.ContextCompat import androidx.lifecycle.LiveData import androidx.lifecycle.MediatorLiveData @@ -1329,6 +1330,7 @@ fun ReactionChoicePopup( alignment = Alignment.BottomCenter, offset = IntOffset(0, iconSizePx), onDismissRequest = { onDismiss() }, + properties = PopupProperties(focusable = true), ) { ReactionChoicePopupContent( reactions, @@ -1507,6 +1509,7 @@ fun ZapAmountChoicePopup( alignment = Alignment.BottomCenter, offset = IntOffset(0, yOffset), onDismissRequest = { onDismiss() }, + properties = PopupProperties(focusable = true), ) { FlowRow(horizontalArrangement = Arrangement.Center) { zapAmountChoices.forEach { amountInSats ->