mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
fixed tabs being colored when the window was unfocused
This commit is contained in:
parent
c50e6d7809
commit
64553cf27b
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue