From 405e151f1257c33f6cc586f21cc38338b25e76ec Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 17 Feb 2026 16:56:22 -0700 Subject: [PATCH] style: Increase default view cube opacity --- src/ViewCube.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewCube.cpp b/src/ViewCube.cpp index 1fb88b1..18f3c64 100644 --- a/src/ViewCube.cpp +++ b/src/ViewCube.cpp @@ -42,7 +42,7 @@ void ViewCube::paintGL(QOpenGLShaderProgram* simpleShader, int simpleShaderColor QRect viewCubeRect(width - viewCubeSize, 0, viewCubeSize, viewCubeSize); QPoint physicalMousePos = mousePos * QGuiApplication::primaryScreen()->devicePixelRatio(); - float opacity = 0.25f; + float opacity = 0.5f; if (viewCubeRect.contains(physicalMousePos)) { opacity = 1.0f; }