From f2b941906d62ad19f34ddd0325c84313d1ea2bf1 Mon Sep 17 00:00:00 2001 From: lucy Date: Sun, 1 Feb 2026 01:24:57 +0100 Subject: [PATCH] fix icon fill --- reusables/CustomIcon.qml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/reusables/CustomIcon.qml b/reusables/CustomIcon.qml index 055e01d..ab7a619 100644 --- a/reusables/CustomIcon.qml +++ b/reusables/CustomIcon.qml @@ -3,14 +3,15 @@ import qs.settings import qs Text { - property real fill: 0 + property bool fill: false anchors.verticalCenter: parent.verticalCenter font.family: "Material Symbols Rounded" color: Colors.onSurfaceColor + font.pixelSize: Settings.config.fontSize + 4 font.variableAxes: ({ - FILL: 1, - GRAD: 200, - opsz: 0, - wght: 700 + FILL: fill, + GRAD: 100, + opsz: fill ? 48 : 20, + wght: 400 }) }