1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-13 20:41:58 +02:00

* Tweaked OverlayWidget's settings a little.

This commit is contained in:
Christian Muehlhaeuser 2011-01-23 06:47:27 +01:00
parent 8639046d41
commit 41f87b4ad6
2 changed files with 7 additions and 4 deletions

View File

@ -289,6 +289,8 @@ TrackView::onFilterChanged( const QString& )
{
if ( selectedIndexes().count() )
scrollTo( selectedIndexes().at( 0 ), QAbstractItemView::PositionAtCenter );
reset();
}

View File

@ -4,7 +4,7 @@
#include <QPainter>
#include <QPropertyAnimation>
#define CORNER_ROUNDNESS 32.0
#define CORNER_ROUNDNESS 16.0
#define FADEIN_DURATION 500
#define FONT_SIZE 18
#define OPACITY 0.80
@ -97,8 +97,9 @@ OverlayWidget::paintEvent( QPaintEvent* event )
p.setBackgroundMode( Qt::TransparentMode );
p.setRenderHint( QPainter::Antialiasing );
p.setPen( palette().shadow().color() );
p.setBrush( palette().shadow() );
QPen pen( palette().dark().color(), .5 );
p.setPen( pen );
p.setBrush( palette().highlight() );
p.drawRoundedRect( r, CORNER_ROUNDNESS, CORNER_ROUNDNESS );
@ -110,6 +111,6 @@ OverlayWidget::paintEvent( QPaintEvent* event )
f.setBold( true );
p.setFont( f );
p.setPen( palette().light().color() );
p.setPen( palette().highlightedText().color() );
p.drawText( r.adjusted( 16, 16, -16, -16 ), text(), to );
}