From 80d586393810935ab0147c0be9a36669dc562429 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Wed, 26 Jul 2023 17:13:22 +0200 Subject: [PATCH] stack: Fix grabbing on the right side --- src/shell/element/stack.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/shell/element/stack.rs b/src/shell/element/stack.rs index 475cc985..dc324c37 100644 --- a/src/shell/element/stack.rs +++ b/src/shell/element/stack.rs @@ -658,7 +658,9 @@ impl Program for CosmicStackInternal { .height(Length::Fill) .width(Length::Fill), ), - iced_widget::horizontal_space(64) + iced_widget::horizontal_space(0) + .apply(iced_widget::container) + .padding([64, 24]) .apply(iced_widget::mouse_area) .on_press(Message::DragStart) .into(),