fixed selection color for light theme

This commit is contained in:
fourtf
2017-12-19 02:37:58 +01:00
parent f8e4d9a737
commit e39b9093f9
4 changed files with 6 additions and 3 deletions
+3
View File
@@ -117,6 +117,9 @@ void ColorScheme::setColors(double hue, double multiplier)
"border:" + TabSelectedBackground.name() + ";" + "color:" + Text.name() +
";" + "selection-background-color:" + TabSelectedBackground.name();
// Selection
Selection = isLightTheme() ? QColor(0, 0, 0, 64) : QColor(255, 255, 255, 64);
this->updated();
}