From 56ed1c4ace65c0b00083c63507ce59fc502db32b Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Fri, 17 Jun 2011 13:25:20 -0400 Subject: [PATCH] set volume to 75% on startup on osx---it's not the system volume there --- src/libtomahawk/audio/audioengine.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libtomahawk/audio/audioengine.cpp b/src/libtomahawk/audio/audioengine.cpp index d3ed446ce..cfba7c05a 100644 --- a/src/libtomahawk/audio/audioengine.cpp +++ b/src/libtomahawk/audio/audioengine.cpp @@ -68,6 +68,11 @@ AudioEngine::AudioEngine() connect( m_audioOutput, SIGNAL( volumeChanged( qreal ) ), this, SLOT( onVolumeChanged( qreal ) ) ); onVolumeChanged( m_audioOutput->volume() ); +#ifdef Q_OS_MAC + // On mac, phonon volume is independent from system volume, so the onVolumeChanged call above just sets our volume to 100%. + // Since it's indendent, we'll set it to 75% since that's nicer + setVolume( 75 ); +#endif }