1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-10-06 10:31:38 +02:00

* Another set of font & icon size fixes.

This commit is contained in:
Christian Muehlhaeuser
2012-09-02 16:22:45 +02:00
parent 6e41b586de
commit c89ed44196
2 changed files with 4 additions and 4 deletions

View File

@@ -21,6 +21,7 @@
#include "widgets/HeaderLabel.h"
#include "utils/StyleHelper.h"
#include "utils/TomahawkUtilsGui.h"
#include <QStylePainter>
#include <QStyleOptionButton>
@@ -32,7 +33,7 @@ ToggleButton::ToggleButton( QWidget* parent )
{
QFont f( font() );
f.setBold( true );
f.setPixelSize( 12 );
f.setPointSize( TomahawkUtils::defaultFontSize() + 1 );
setFont( f );
setFixedHeight( sizeHint().height() + 8 );