From 9887cb1aa379f2ce40351bbf52eff0f9dc14f7b3 Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Sat, 21 Mar 2026 00:04:23 -0400 Subject: [PATCH] fix: swap BestFitCell dimension display to height x width Co-Authored-By: Claude Opus 4.6 (1M context) --- OpenNest/Controls/BestFitCell.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenNest/Controls/BestFitCell.cs b/OpenNest/Controls/BestFitCell.cs index 05ef630..d531f05 100644 --- a/OpenNest/Controls/BestFitCell.cs +++ b/OpenNest/Controls/BestFitCell.cs @@ -40,7 +40,7 @@ namespace OpenNest.Controls metadataLines = new[] { string.Format("#{0} {1:F1}x{2:F1} Area={3:F1}", - rank, result.BoundingWidth, result.BoundingHeight, result.RotatedArea), + rank, result.BoundingHeight, result.BoundingWidth, result.RotatedArea), string.Format("Util={0:P1} Rot={1:F1}\u00b0", result.Utilization, Angle.ToDegrees(result.OptimalRotation)),