mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 730176 - Volume buttons don't control call volume [r=cjones]
This commit is contained in:
parent
2cde588c6f
commit
4668a84e9b
@ -76,6 +76,10 @@ AudioManager::SetMasterVolume(float aMasterVolume)
|
||||
if (AudioSystem::setMasterVolume(aMasterVolume)) {
|
||||
return NS_ERROR_FAILURE;
|
||||
}
|
||||
// For now, just set the voice volume at the same level
|
||||
if (AudioSystem::setVoiceVolume(aMasterVolume)) {
|
||||
return NS_ERROR_FAILURE;
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user