From 614808f384700730a1ca805a6ba2abf0662e7076 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Mon, 8 Mar 2021 22:10:48 -0800 Subject: [PATCH] qt_sound: lower volume --- selfdrive/ui/qt/qt_sound.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/qt/qt_sound.cc b/selfdrive/ui/qt/qt_sound.cc index c18b2d585..9d1b14195 100644 --- a/selfdrive/ui/qt/qt_sound.cc +++ b/selfdrive/ui/qt/qt_sound.cc @@ -11,7 +11,7 @@ QtSound::QtSound() { bool QtSound::play(AudibleAlert alert) { int loops = sound_map[alert].second> - 1 ? sound_map[alert].second : QSoundEffect::Infinite; sounds[alert].setLoopCount(loops); - sounds[alert].setVolume(0.7); + sounds[alert].setVolume(0.45); sounds[alert].play(); return true; }