1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-21 05:11:44 +02:00

* Add tooltips to shuffle & repeat button.

This commit is contained in:
Christian Muehlhaeuser
2014-08-20 14:39:27 +02:00
parent d73946ea3e
commit 4d17aaf3c5

View File

@@ -95,6 +95,11 @@ AudioControls::AudioControls( QWidget* parent )
ui->repeatButton->setFixedSize( scaled( 16, 16 ) );
ui->volumeLowButton->setFixedSize( scaled( 16, 16 ) );
// ui->prevButton->setToolTip( tr( "Previous Track" ) );
// ui->nextButton->setToolTip( tr( "Next Track" ) );
ui->shuffleButton->setToolTip( tr( "Shuffle" ) );
ui->repeatButton->setToolTip( tr( "Repeat" ) );
ui->ownerButton->setPixmap( TomahawkUtils::defaultPixmap( TomahawkUtils::DefaultResolver, TomahawkUtils::Original, ui->ownerButton->size() ) );
ui->prevButton->setPixmap( TomahawkUtils::defaultPixmap( TomahawkUtils::PrevButton, TomahawkUtils::Original, ui->prevButton->size() ) );
ui->prevButton->setPixmap( TomahawkUtils::defaultPixmap( TomahawkUtils::PrevButtonPressed, TomahawkUtils::Original, ui->prevButton->size() ), QIcon::Off, QIcon::Active );