From 5c1b94e9fce7bf68190f93187600d47308694c37 Mon Sep 17 00:00:00 2001 From: Martchus Date: Fri, 26 Apr 2024 20:24:35 +0200 Subject: [PATCH] Use thick stroke with for status icon presets without background color It looks better. --- syncthingmodel/syncthingicons.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/syncthingmodel/syncthingicons.cpp b/syncthingmodel/syncthingicons.cpp index 8b71df9..919c416 100644 --- a/syncthingmodel/syncthingicons.cpp +++ b/syncthingmodel/syncthingicons.cpp @@ -208,6 +208,7 @@ StatusIconSettings::StatusIconSettings(StatusIconSettings::DarkTheme) , synchronizingColor({ QStringLiteral("#00FFFFFF"), QStringLiteral("#00FFFFFF"), QStringLiteral("#FFA5EFFF") }) , pausedColor({ QStringLiteral("#00000000"), QStringLiteral("#00FFFFFF"), QStringLiteral("#FFA7A7A7") }) , disconnectedColor({ QStringLiteral("#00000000"), QStringLiteral("#00000000"), QStringLiteral("#FFA7A7A7") }) + , strokeWidth(StatusIconStrokeWidth::Thick) { } @@ -220,6 +221,7 @@ StatusIconSettings::StatusIconSettings(StatusIconSettings::BrightTheme) , synchronizingColor({ QStringLiteral("#00000000"), QStringLiteral("#00000000"), QStringLiteral("#FF26B6DB") }) , pausedColor({ QStringLiteral("#00FFFFFF"), QStringLiteral("#00FFFFFF"), QStringLiteral("#FFA7A7A7") }) , disconnectedColor({ QStringLiteral("#00FFFFFF"), QStringLiteral("#00FFFFFF"), QStringLiteral("#FFA7A7A7") }) + , strokeWidth(StatusIconStrokeWidth::Thick) { }