From 866da0f94b9111174f0460ba3c395d1fe055a216 Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Fri, 5 Dec 2025 16:44:39 +0100 Subject: [PATCH] revert: "fix(popover): set default position to `Bottom`" Causes popups to be misplaced in applications that required the previous behavior. This reverts commit 18182e5f97c989b93e50a6f425073232f217692f. --- 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 4cea3eb..26120b7 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::Bottom, + position: Position::Center, on_close: None, } }