From 8e979f7f734d9614fd0ea3bf628eef433abf121d Mon Sep 17 00:00:00 2001 From: Abe Binder Date: Wed, 11 Feb 2026 22:40:05 -1000 Subject: [PATCH] Fix top position calculating when applying edge resistance. --- src/core/edge-resistance.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/edge-resistance.c b/src/core/edge-resistance.c index ba3df2ac7..fc7c06602 100644 --- a/src/core/edge-resistance.c +++ b/src/core/edge-resistance.c @@ -636,7 +636,7 @@ apply_edge_resistance_to_each_side (MetaDisplay *display, } - if (ABS (vertical_point - new_left) < 16) + if (ABS (vertical_point - new_top) < 16) { new_top = vertical_point; new_bottom = workarea.y + workarea.height;