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

shrink font size on osx

This commit is contained in:
Leo Franchi
2011-02-26 15:26:04 -05:00
parent f9c4eac734
commit 83ec026b34

View File

@@ -175,6 +175,10 @@ TomahawkApp::TomahawkApp( int& argc, char *argv[] )
Tomahawk::setShortcutHandler( static_cast<MacShortcutHandler*>( m_shortcutHandler) ); Tomahawk::setShortcutHandler( static_cast<MacShortcutHandler*>( m_shortcutHandler) );
Tomahawk::setApplicationHandler( this ); Tomahawk::setApplicationHandler( this );
QFont f( QApplication::font() );
f.setPointSize( f.pointSize() - 2 );
QApplication::setFont( f );
#endif #endif
// Connect up shortcuts // Connect up shortcuts