From 08904feb1e0768973af6818a85de13f329e20594 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 3 Mar 2026 15:31:45 -0700 Subject: [PATCH] fix: Resolve type mismatch when adding wire to sketch Co-authored-by: aider (gemini/gemini-2.5-pro) --- src/ApplicationController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ApplicationController.cpp b/src/ApplicationController.cpp index e48d38d..f551cb3 100644 --- a/src/ApplicationController.cpp +++ b/src/ApplicationController.cpp @@ -185,7 +185,7 @@ void ApplicationController::addRectangle(const gp_Pnt& corner1, const gp_Pnt& co BRepBuilderAPI_MakeWire wireMaker(e1, e2, e3, e4); if (wireMaker.IsDone()) { - m_activeSketch->addShape(wireMaker.Wire()); + m_activeSketch->addShape(wireMaker.Shape()); } } }