From 3fc97552b2e3de5ff503531f70c69bd2b4a175ae Mon Sep 17 00:00:00 2001 From: lucy Date: Mon, 2 Feb 2026 23:35:52 +0100 Subject: [PATCH] remove ability to have filled icons --- reusables/CustomIcon.qml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/reusables/CustomIcon.qml b/reusables/CustomIcon.qml index 0c9a714..a312afb 100644 --- a/reusables/CustomIcon.qml +++ b/reusables/CustomIcon.qml @@ -4,13 +4,7 @@ import qs Text { verticalAlignment: Text.AlignVCenter - property bool fill: true - font.family: fill ? "Material Symbols Rounded Filled" : "Material Symbols Rounded" + font.family: "Material Symbols Rounded" color: Colors.onSurfaceColor font.pixelSize: Settings.config.fontSize + 2 - font.variableAxes: ({ - GRAD: 100, - opsz: fill ? 48 : 20, - wght: 700 - }) }