From 524ceef47c22beaaadf3e7b9d2520f7657be3091 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Mon, 26 Feb 2024 18:44:57 -0500 Subject: [PATCH] chore: fmt --- src/widget/popover.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/widget/popover.rs b/src/widget/popover.rs index dcd0954c..726ca931 100644 --- a/src/widget/popover.rs +++ b/src/widget/popover.rs @@ -176,7 +176,10 @@ where None => { // Set position to center ( - Point::new(bounds.x + bounds.width / 2.0, bounds.y + bounds.height / 2.0), + Point::new( + bounds.x + bounds.width / 2.0, + bounds.y + bounds.height / 2.0, + ), true, ) }