diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-05 17:43:13 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-05 17:43:13 +1000 |
| commit | 2f714ff60412b4146857b3a320dc0b92aa9621a5 (patch) | |
| tree | 9fd66fdda57d5069a9923241aa819abd5f0451ad /widgets | |
| parent | internal: move cava to service (diff) | |
| download | caelestia-shell-2f714ff60412b4146857b3a320dc0b92aa9621a5.tar.gz caelestia-shell-2f714ff60412b4146857b3a320dc0b92aa9621a5.tar.bz2 caelestia-shell-2f714ff60412b4146857b3a320dc0b92aa9621a5.zip | |
internal: fix memory issue
Fix loading material symbols into memory 7000 times eating up tons of memory
Diffstat (limited to 'widgets')
| -rw-r--r-- | widgets/MaterialIcon.qml | 3 |
1 files changed, 1 insertions, 2 deletions
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) }) } |