new systray filled icons

This commit is contained in:
2026-04-07 21:15:14 +02:00
parent e5c03448c2
commit 635e2c3964
3 changed files with 10 additions and 6 deletions
+2
View File
@@ -17,6 +17,7 @@ RowLayout {
Layout.alignment: Qt.AlignVCenter
animate: true
color: (Audio.sourceMuted ?? false) ? DynamicColors.palette.m3error : root.textColor
fill: 1
font.pointSize: Appearance.font.size.larger
text: Audio.sourceMuted ? "mic_off" : "mic"
}
@@ -25,6 +26,7 @@ RowLayout {
Layout.alignment: Qt.AlignVCenter
animate: true
color: Audio.muted ? DynamicColors.palette.m3error : root.textColor
fill: 1
font.pointSize: Appearance.font.size.larger
text: Audio.muted ? "volume_off" : "volume_up"
}