1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

* Only react to left-clicks in HoverControls.

This commit is contained in:
Christian Muehlhaeuser 2014-10-05 07:04:55 +02:00
parent 191919de24
commit d36935a28e

View File

@ -114,7 +114,8 @@ HoverControls::mouseReleaseEvent( QMouseEvent* event )
{
QWidget::mouseReleaseEvent( event );
emit play();
if ( event->button() == Qt::LeftButton )
emit play();
}