internal: fix memory issue

Fix loading material symbols into memory 7000 times eating up tons of memory
This commit is contained in:
2 * r + 2 * t 2025-06-05 17:43:13 +10:00
parent 6afd2a1525
commit 2f714ff604

View file

@ -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)
})
}