From 83ec026b34e5f17298eaf3c72ae8a62f0b4f0165 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Sat, 26 Feb 2011 15:26:04 -0500 Subject: [PATCH] shrink font size on osx --- src/tomahawkapp.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tomahawkapp.cpp b/src/tomahawkapp.cpp index 45b4053c8..4d68b8aa7 100644 --- a/src/tomahawkapp.cpp +++ b/src/tomahawkapp.cpp @@ -175,6 +175,10 @@ TomahawkApp::TomahawkApp( int& argc, char *argv[] ) Tomahawk::setShortcutHandler( static_cast( m_shortcutHandler) ); Tomahawk::setApplicationHandler( this ); + + QFont f( QApplication::font() ); + f.setPointSize( f.pointSize() - 2 ); + QApplication::setFont( f ); #endif // Connect up shortcuts