From f316755cdcaf632d91a9adbc80e93fda744fd16e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 8 Mar 2024 00:37:10 +0100 Subject: Fix handle of `PickList` being rendered too much to the left --- widget/src/pick_list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widget/src/pick_list.rs b/widget/src/pick_list.rs index d98909fa..b8fc6079 100644 --- a/widget/src/pick_list.rs +++ b/widget/src/pick_list.rs @@ -329,7 +329,7 @@ where shaping, }, Point::new( - bounds.x + bounds.width - self.padding.horizontal(), + bounds.x + bounds.width - self.padding.right, bounds.center_y(), ), appearance.handle_color, -- cgit