escape icons so edit tool does not break them

This commit is contained in:
Damocles 2026-04-12 00:38:50 +02:00
parent de2be39a88
commit 3dc6111825
13 changed files with 22 additions and 22 deletions

View file

@ -8,10 +8,10 @@ M.BarIcon {
property string profile: ""
icon: {
if (root.profile === "performance") return "";
if (root.profile === "power-saver") return "";
if (root.profile === "balanced") return "";
return "";
if (root.profile === "performance") return "\uF0E7";
if (root.profile === "power-saver") return "\uF06C";
if (root.profile === "balanced") return "\uF24E";
return "\uF0E7";
}
Process {