1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-02 03:28:28 -04:00

audio: only show mic volume OSD through DMS IPCs, not external source

changes
fixes #2790
port 1.5
This commit is contained in:
bbedward
2026-07-10 12:43:07 -04:00
parent a3b2167e58
commit 05feb211ba
3 changed files with 13 additions and 2 deletions
@@ -255,6 +255,7 @@ BasePill {
const newVolume = delta > 0 ? Math.min(100, currentVolume + step) : Math.max(0, currentVolume - step);
AudioService.source.audio.muted = false;
AudioService.source.audio.volume = newVolume / 100;
AudioService.micVolumeChanged();
}
function handleBrightnessWheel(delta) {