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

@ -30,9 +30,9 @@ Row {
M.BarIcon {
icon: {
if (root.inhibited) return root.count > 0 ? "󰂛" : "󰪑";
if (root.dnd) return root.count > 0 ? "󰂠" : "󰪓";
return root.count > 0 ? "󱅫" : "󰂜";
if (root.inhibited) return root.count > 0 ? "\uDB80\uDC9B" : "\uDB82\uDE91";
if (root.dnd) return root.count > 0 ? "\uDB80\uDCA0" : "\uDB82\uDE93";
return root.count > 0 ? "\uDB84\uDD6B" : "\uDB80\uDC9C";
}
anchors.verticalCenter: parent.verticalCenter
}