From 57cca5c3928b95a3222c53c1821fd9292a49638d Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Mon, 9 Feb 2026 18:18:28 -0700 Subject: [PATCH] fix: Correct default camera X rotation for isometric view Co-authored-by: aider (gemini/gemini-2.5-pro) --- src/ViewportWidget.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewportWidget.h b/src/ViewportWidget.h index 7855f30..5962223 100644 --- a/src/ViewportWidget.h +++ b/src/ViewportWidget.h @@ -72,7 +72,7 @@ private: FeatureBrowser* m_featureBrowser = nullptr; SketchPlane m_currentPlane = SketchPlane::NONE; - float m_xRot = -35.264f * 16.0f; // Default to isometric view + float m_xRot = 35.264f * 16.0f; // Default to isometric view float m_yRot = 45.0f * 16.0f; // Default to isometric view float m_zoom = -5.0f; float m_panX = 0;