From 58d154b4ffce59e71dfc79389e02cf4c359376ac Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sun, 15 Feb 2026 11:21:22 -0700 Subject: [PATCH] feat: Display sketch grid preview on plane highlight Co-authored-by: aider (gemini/gemini-2.5-pro) --- src/ViewportWidget.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ViewportWidget.cpp b/src/ViewportWidget.cpp index 07124df..4e508be 100644 --- a/src/ViewportWidget.cpp +++ b/src/ViewportWidget.cpp @@ -136,6 +136,9 @@ void ViewportWidget::paintGL() glLoadMatrixf(model.constData()); if (m_isSelectingPlane) { + if (m_highlightedPlane != SketchPlane::NONE) { + m_sketchGrid->paintGL(static_cast(m_highlightedPlane), projection, model); + } drawSelectionPlanes(); }