1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-19 15:29:42 +01:00

* This doesn't make sense to me, but it fixes the play button being off-center.

This commit is contained in:
Christian Muehlhaeuser 2013-01-04 10:59:02 +01:00
parent cbf6aa1a29
commit f7c6164701

View File

@ -75,7 +75,7 @@ void
PlayableCover::resizeEvent( QResizeEvent* event )
{
QLabel::resizeEvent( event );
m_button->move( contentsRect().center() - QPoint( 23, 23 ) );
m_button->move( contentsRect().center() - QPoint( 22, 23 ) );
}