1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

media: change icon for player volume

This commit is contained in:
bbedward
2025-11-25 15:02:59 -05:00
parent 8de77f283d
commit 0864179085
2 changed files with 7 additions and 1 deletions

View File

@@ -179,6 +179,12 @@ Item {
const volume = currentVolume;
if (usePlayerVolume) {
if (volume === 0.0)
return "music_off";
return "music_note";
}
if (volume === 0.0)
return "volume_off";
if (volume <= 0.33)