1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 00:09:47 +01:00

TWK-911: Fix placement of social widget

This commit is contained in:
Leo Franchi 2012-06-10 17:56:26 +02:00
parent 60f8241305
commit c114657f81

View File

@ -598,7 +598,7 @@ void
AudioControls::onSocialButtonClicked()
{
SocialWidget* sw = new SocialWidget( m_parent );
sw->setPosition( QCursor::pos() );
sw->setPosition( sw->mapFromGlobal( QCursor::pos() ) );
sw->setQuery( m_currentTrack->toQuery() );
sw->show();
}