diff --git a/src/modules/fancyzones/lib/ZoneSet.cpp b/src/modules/fancyzones/lib/ZoneSet.cpp index 9a59fe5b55..806d71106a 100644 --- a/src/modules/fancyzones/lib/ZoneSet.cpp +++ b/src/modules/fancyzones/lib/ZoneSet.cpp @@ -399,11 +399,11 @@ bool ZoneSet::CalculateColumnsAndRowsLayout(Rect workArea, JSONHelpers::ZoneSetL if (type == JSONHelpers::ZoneSetLayoutType::Columns) { right = left + (zone + 1) * totalWidth / zoneCount - zone * totalWidth / zoneCount; - bottom = totalHeight - spacing; + bottom = totalHeight + spacing; } else { //Rows - right = totalWidth - spacing; + right = totalWidth + spacing; bottom = top + (zone + 1) * totalHeight / zoneCount - zone * totalHeight / zoneCount; }