1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-22 00:42:04 +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
src/libtomahawk/widgets

@ -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 );

@ -304,9 +304,8 @@ PlaylistDelegate::paint( QPainter* painter, const QStyleOptionViewItem& option,
else if( type == RecentlyPlayedPlaylistsModel::Station )
icon = m_stationIcon;
QRect pixmapRect = option.rect.adjusted( 10, 13, -option.rect.width() + option.rect.height() - 26, -13 );
QRect pixmapRect = option.rect.adjusted( 10, 14, -option.rect.width() + option.rect.height() - 18, -14 );
icon = icon.scaled( pixmapRect.size(), Qt::KeepAspectRatio, Qt::SmoothTransformation );
painter->drawPixmap( pixmapRect, icon );
if ( type != RecentlyPlayedPlaylistsModel::Station )
@ -318,7 +317,7 @@ PlaylistDelegate::paint( QPainter* painter, const QStyleOptionViewItem& option,
// int bottomEdge = pixmapRect
// right edge 10px past right edge of pixmapRect
// bottom edge flush with bottom of pixmap
QRect rect( pixmapRect.right() - width , 0, width - 8, 0 );
QRect rect( pixmapRect.right() - width, 0, width - 8, 0 );
rect.adjust( -2, 0, 0, 0 );
rect.setTop( pixmapRect.bottom() - painter->fontMetrics().height() - 1 );
rect.setBottom( pixmapRect.bottom() + 1 );