1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-04 16:12:24 +02:00

* On non X11 set our default volume to 75%.

This commit is contained in:
Christian Muehlhaeuser 2011-09-07 05:11:00 +02:00
parent d6a504c38b
commit 96c279275e

View File

@ -74,9 +74,10 @@ AudioEngine::AudioEngine()
connect( m_audioOutput, SIGNAL( volumeChanged( qreal ) ), this, SLOT( onVolumeChanged( qreal ) ) );
onVolumeChanged( m_audioOutput->volume() );
#ifdef Q_WS_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
#ifndef Q_WS_X11
// On mac & win, 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
}