From 266bf1d3c0c5ff2131e3c52b8994083eccb27da4 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Tue, 16 Jan 2024 15:08:11 +0100 Subject: Update libdecor to commit 7807ae34 dated 15-Jan-2024 --- libdecor/src/plugins/cairo/libdecor-cairo.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libdecor/src/plugins/cairo') diff --git a/libdecor/src/plugins/cairo/libdecor-cairo.c b/libdecor/src/plugins/cairo/libdecor-cairo.c index f8beb7aa1..765800df6 100644 --- a/libdecor/src/plugins/cairo/libdecor-cairo.c +++ b/libdecor/src/plugins/cairo/libdecor-cairo.c @@ -2074,10 +2074,10 @@ component_edge(const struct border_component *cmpnt, const int pointer_y, const int margin) { - const bool top = pointer_y < margin; - const bool bottom = pointer_y > (cmpnt->server.buffer->height - margin); - const bool left = pointer_x < margin; - const bool right = pointer_x > (cmpnt->server.buffer->width - margin); + const bool top = pointer_y < margin * 2; + const bool bottom = pointer_y > (cmpnt->server.buffer->height - margin * 2); + const bool left = pointer_x < margin * 2; + const bool right = pointer_x > (cmpnt->server.buffer->width - margin * 2); if (top) if (left) -- cgit v1.2.3