1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 08:32:42 +02:00

set volume to 75% on startup on osx---it's not the system volume there

This commit is contained in:
Leo Franchi 2011-06-17 13:25:20 -04:00
parent 2805b08989
commit 56ed1c4ace

View File

@ -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
}