From 037df494fb769ad5a5924d600c80e7b821e6214c Mon Sep 17 00:00:00 2001 From: Oliver <480930+rivo@users.noreply.github.com> Date: Fri, 24 May 2024 08:30:12 +0200 Subject: [PATCH] Fixed wrong handling of grid conflicts. Fixes #987, resolves #991 --- grid.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grid.go b/grid.go index 83648e4..d7028bf 100644 --- a/grid.go +++ b/grid.go @@ -287,7 +287,7 @@ ItemLoop: if item.Item != existing.Item && (item.Row >= existing.Row+existing.Height || item.Row+item.Height <= existing.Row || item.Column >= existing.Column+existing.Width || item.Column+item.Width <= existing.Column) { - break // They don't. + continue // They don't and aren't. } // What's their minimum size?