1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-08 23:26:40 +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(); QFont f = font();
TomahawkUtils::setSystemFont( f ); TomahawkUtils::setSystemFont( f );
f.setFamily( "Roboto" ); f.setFamily( "Roboto" );
#ifndef Q_OS_MAC #ifdef Q_OS_WIN
f.setPointSize( 10 ); f.setPointSize( 10 );
#else #endif
#ifdef Q_OS_MAC
f.setPointSize( f.pointSize() - 2 ); f.setPointSize( f.pointSize() - 2 );
#endif #endif