From bfe8b4d77d5cf3148a86853e0f7c413dba0a869e Mon Sep 17 00:00:00 2001 From: DanS Date: Sun, 12 Jul 2026 13:40:40 -0500 Subject: [PATCH] change(settings): default Windows window opacity to 90% Raise the Windows window-opacity default (0.75 -> 0.90) so less of the (often dark) desktop bleeds through the wallpaper behind the panels. Mac/Linux stay fully opaque. Only affects fresh installs / unset values. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/config/settings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/settings.h b/src/config/settings.h index 07e6455..b61dfda 100644 --- a/src/config/settings.h +++ b/src/config/settings.h @@ -474,7 +474,7 @@ private: bool gradient_background_ = false; #ifdef _WIN32 float ui_opacity_ = 0.50f; // Card/sidebar opacity (0.3–1.0, 1.0 = opaque) - float window_opacity_ = 0.75f; // Background alpha (0.3–1.0, <1 = desktop visible) + float window_opacity_ = 0.90f; // Background alpha (0.3–1.0, <1 = desktop visible) #else float ui_opacity_ = 1.0f; // Mac/Linux: default fully opaque float window_opacity_ = 1.0f; // Mac/Linux: default fully opaque