X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fqtuistyle.cpp;h=2fa8aeba2a0e8acfe5959740d000b156486ce217;hp=396fb9ae364e6265d0a500fa46f1e9ed84cdbea2;hb=10189b4eb20d1b3b9579a6b51dde697691c18abd;hpb=6e73ba4a19fd92038e1ea749125767661fb34e27 diff --git a/src/qtui/qtuistyle.cpp b/src/qtui/qtuistyle.cpp index 396fb9ae..2fa8aeba 100644 --- a/src/qtui/qtuistyle.cpp +++ b/src/qtui/qtuistyle.cpp @@ -59,7 +59,8 @@ void QtUiStyle::generateSettingsQss() const { if(s.value("UseChatViewColors").toBool()) { out << "\n// Custom ChatView Colors\n" - << "Palette { marker-line: " << color("MarkerLine", s) << "; }\n" + // markerline is special in that it always used to use a gradient, so we keep this behavior even with the new implementation + << "Palette { marker-line: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 " << color("MarkerLine", s) << ", stop: 0.1 transparent); }\n" << "ChatView { background: " << color("ChatViewBackground", s) << "; }\n\n" << "ChatLine[label=\"highlight\"] {\n" << " foreground: " << color("Highlight",s) << ";\n"