From 74364f0152109b368c56ce920bf5742c6ffe5079 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Mon, 9 Feb 2026 16:19:14 -0700 Subject: [PATCH] fix: Correct typo in QMatrix4x4 declaration in ViewportWidget.cpp Co-authored-by: aider (gemini/gemini-2.5-pro) --- src/ViewportWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewportWidget.cpp b/src/ViewportWidget.cpp index dc19b44..18b1e80 100644 --- a/src/ViewportWidget.cpp +++ b/src/ViewportWidget.cpp @@ -43,7 +43,7 @@ void ViewportWidget::paintGL() glLoadMatrixf(model.constData()); // View cube rendering - QMatrix4xá4 viewCubeModel; + QMatrix4x4 viewCubeModel; viewCubeModel.rotate(xRot / 16.0f, 1, 0, 0); viewCubeModel.rotate(yRot / 16.0f, 0, 1, 0); m_viewCube->paintGL(viewCubeModel, width(), height());