From 2f714ff60412b4146857b3a320dc0b92aa9621a5 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 5 Jun 2025 17:43:13 +1000 Subject: internal: fix memory issue Fix loading material symbols into memory 7000 times eating up tons of memory --- widgets/MaterialIcon.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'widgets') diff --git a/widgets/MaterialIcon.qml b/widgets/MaterialIcon.qml index f625319..c86e5ce 100644 --- a/widgets/MaterialIcon.qml +++ b/widgets/MaterialIcon.qml @@ -1,5 +1,4 @@ import "root:/config" -import QtQuick StyledText { property real fill @@ -7,6 +6,6 @@ StyledText { font.family: Appearance.font.family.material font.pointSize: Appearance.font.size.larger font.variableAxes: ({ - FILL: fill + FILL: fill.toFixed(1) }) } -- cgit v1.2.3-freya