From 18182e5f97c989b93e50a6f425073232f217692f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vuka=C5=A1in=20Vojinovi=C4=87?= <150025636+git-f0x@users.noreply.github.com> Date: Tue, 2 Dec 2025 18:00:56 +0100 Subject: [PATCH] fix(popover): set default position to `Bottom` I didn't see this part in my previous PR (sorry!). --- src/widget/popover.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/popover.rs b/src/widget/popover.rs index 26120b7..4cea3eb 100644 --- a/src/widget/popover.rs +++ b/src/widget/popover.rs @@ -52,7 +52,7 @@ where content: content.into(), modal: false, popup: None, - position: Position::Center, + position: Position::Bottom, on_close: None, } }