From f3bfe8a374cc31bd91f633b275414d0c7036834d Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 18 Nov 2025 20:29:34 +0100 Subject: [PATCH] unfuck material symbols rendering --- .../quickshell/ii/modules/common/widgets/MaterialSymbol.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/MaterialSymbol.qml b/dots/.config/quickshell/ii/modules/common/widgets/MaterialSymbol.qml index a72d911ab..d117bb60b 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/MaterialSymbol.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/MaterialSymbol.qml @@ -6,9 +6,9 @@ StyledText { property real iconSize: Appearance?.font.pixelSize.small ?? 16 property real fill: 0 property real truncatedFill: fill.toFixed(1) // Reduce memory consumption spikes from constant font remapping - renderType: fill !== 0 ? Text.CurveRendering : Text.NativeRendering + renderType: Text.NativeRendering font { - hintingPreference: Font.PreferFullHinting + hintingPreference: Font.PreferNoHinting family: Appearance?.font.family.iconMaterial ?? "Material Symbols Rounded" pixelSize: iconSize weight: Font.Normal + (Font.DemiBold - Font.Normal) * truncatedFill