summaryrefslogtreecommitdiff
path: root/modules/controlcenter
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-15 01:39:41 -0500
committerATMDA <atdma2600@gmail.com>2025-11-15 01:39:41 -0500
commit56ed76e183483e36c42d1a2e2fbca79b77f0cb1e (patch)
tree9c56b9e76b34690aa34142e9dc81fabb71865bd6 /modules/controlcenter
parentcontrolcenter: removed FileView and now all use singleton Config (diff)
downloadcaelestia-shell-56ed76e183483e36c42d1a2e2fbca79b77f0cb1e.tar.gz
caelestia-shell-56ed76e183483e36c42d1a2e2fbca79b77f0cb1e.tar.bz2
caelestia-shell-56ed76e183483e36c42d1a2e2fbca79b77f0cb1e.zip
controlcenter: changed mute button icons
Diffstat (limited to 'modules/controlcenter')
-rw-r--r--modules/controlcenter/audio/AudioPane.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/controlcenter/audio/AudioPane.qml b/modules/controlcenter/audio/AudioPane.qml
index 32d6680..b4a0bf1 100644
--- a/modules/controlcenter/audio/AudioPane.qml
+++ b/modules/controlcenter/audio/AudioPane.qml
@@ -304,7 +304,7 @@ RowLayout {
id: muteIcon
anchors.centerIn: parent
- text: Audio.muted ? "volume_off" : "volume_up"
+ text: Audio.muted ? "volume_off" : "volume_mute"
color: Audio.muted ? Colours.palette.m3onSecondary : Colours.palette.m3onSecondaryContainer
}
}
@@ -374,7 +374,7 @@ RowLayout {
id: muteInputIcon
anchors.centerIn: parent
- text: Audio.sourceMuted ? "mic_off" : "mic"
+ text: "mic_off"
color: Audio.sourceMuted ? Colours.palette.m3onSecondary : Colours.palette.m3onSecondaryContainer
}
}