Commit 081073b2 authored by Ilkka Ollakka's avatar Ilkka Ollakka

qt4: don't hardcode fontsize in epgitem

(cherry picked from commit 875c3bcf)
Signed-off-by: default avatarIlkka Ollakka <ileoo@videolan.org>
parent b0e55a6b
...@@ -73,7 +73,6 @@ void EPGItem::paint( QPainter *painter, const QStyleOptionGraphicsItem*, QWidget ...@@ -73,7 +73,6 @@ void EPGItem::paint( QPainter *painter, const QStyleOptionGraphicsItem*, QWidget
// Setup the font // Setup the font
QFont f = painter->font(); QFont f = painter->font();
f.setPointSize( 9 );
f.setBold( true ); f.setBold( true );
painter->setFont( f ); painter->setFont( f );
...@@ -89,7 +88,6 @@ void EPGItem::paint( QPainter *painter, const QStyleOptionGraphicsItem*, QWidget ...@@ -89,7 +88,6 @@ void EPGItem::paint( QPainter *painter, const QStyleOptionGraphicsItem*, QWidget
f.setBold( false ); f.setBold( false );
f.setItalic( true ); f.setItalic( true );
f.setPointSize( 8 );
painter->setFont( f ); painter->setFont( f );
QTextOption textoption; QTextOption textoption;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment