From 1f7c4600efc006f242db19b2d16ee1a4e7f4d919 Mon Sep 17 00:00:00 2001 From: Comma Device Date: Sun, 1 Nov 2020 04:21:22 +0000 Subject: [PATCH] lower volume old-commit-hash: ccecd375545ed083a72c5424baf5ad22f730febe --- 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 c44e27ec97..ba26f62fd9 100644 --- a/selfdrive/ui/qt/qt_sound.cc +++ b/selfdrive/ui/qt/qt_sound.cc @@ -10,7 +10,7 @@ QtSound::QtSound() { bool QtSound::play(AudibleAlert alert) { sounds[alert].setLoopCount(sound_map[alert].second>-1 ? sound_map[alert].second : QSoundEffect::Infinite); - sounds[alert].setVolume(0.9); + sounds[alert].setVolume(0.7); sounds[alert].play(); return true; }