From 13f3a8b411e7588a0e6c4991a3ced554bedee0f3 Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Wed, 6 Mar 2019 03:55:38 +0100 Subject: boxes: Actually check for rectangle containment Fixes condition duplicated: /* If a contains b, just remove b */ if (meta_rectangle_contains_rect (a, b)) { delete_me = other; } /* If b contains a, just remove a */ else if (meta_rectangle_contains_rect (a, b)) { delete_me = compare; } --- src/core/boxes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/boxes.c b/src/core/boxes.c index 93f7db44..19dd939e 100644 --- a/src/core/boxes.c +++ b/src/core/boxes.c @@ -414,7 +414,7 @@ merge_spanning_rects_in_region (GList *region) delete_me = other; } /* If b contains a, just remove a */ - else if (meta_rectangle_contains_rect (a, b)) + else if (meta_rectangle_contains_rect (b, a)) { delete_me = compare; } -- cgit v1.2.1