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

* Don't enforce size on Linux.

This commit is contained in:
Christian Muehlhaeuser 2014-09-08 14:38:20 +02:00
parent 47eca3182d
commit 675a288a69

View File

@ -185,9 +185,10 @@ TomahawkApp::init()
QFont f = font();
TomahawkUtils::setSystemFont( f );
f.setFamily( "Roboto" );
#ifndef Q_OS_MAC
#ifdef Q_OS_WIN
f.setPointSize( 10 );
#else
#endif
#ifdef Q_OS_MAC
f.setPointSize( f.pointSize() - 2 );
#endif