From 64553cf27b41e1c7c4dc10491479fe7f47ed35e9 Mon Sep 17 00:00:00 2001 From: fourtf Date: Mon, 15 Jan 2018 01:38:21 +0100 Subject: [PATCH] fixed tabs being colored when the window was unfocused --- src/singletons/thememanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/singletons/thememanager.cpp b/src/singletons/thememanager.cpp index 6b05e3f47..5f0cb93e0 100644 --- a/src/singletons/thememanager.cpp +++ b/src/singletons/thememanager.cpp @@ -57,7 +57,7 @@ void ThemeManager::actuallyUpdate(double hue, double multiplier) bool isLightTabs; QColor themeColor = QColor::fromHslF(hue, 0.5, 0.5); - QColor themeColorNoSat = QColor::fromHslF(hue, 0.5, 0.5); + QColor themeColorNoSat = QColor::fromHslF(hue, 0, 0.5); #ifdef USEWINSDK QColor tabFg = isLight ? "#000" : "#fff";