From 22efad46842dc364adfca0625052c6d122fc34f9 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 17 Feb 2026 17:25:33 -0700 Subject: [PATCH] style: Adjust ViewCube home button position --- src/ViewCube.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ViewCube.cpp b/src/ViewCube.cpp index d4aa772..c7316d2 100644 --- a/src/ViewCube.cpp +++ b/src/ViewCube.cpp @@ -14,8 +14,8 @@ namespace QRect getHomeButtonRect(int widgetWidth) { const int viewCubeSize = 150; // logical pixels const int buttonSize = 24; - const int buttonOffsetX = 8; - const int buttonOffsetY = 0; + const int buttonOffsetX = 16; + const int buttonOffsetY = 16; const int viewCubeX = widgetWidth - viewCubeSize;