1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-07 17:42:35 +02:00

added Acoustic & Electric songtype

This commit is contained in:
Stefan Derkits 2013-06-25 16:38:09 +02:00
parent 4a9df0676e
commit ef9472d1e8

View File

@ -496,6 +496,8 @@ Tomahawk::EchonestControl::updateWidgets()
QComboBox* combo = new QComboBox();
combo->addItem( tr( "Studio" ), "studio" );
combo->addItem( tr( "Live" ), "live" );
combo->addItem( tr( "Acoustic" ), "acoustic" );
combo->addItem( tr( "Electric" ), "electric" );
combo->addItem( tr( "Christmas" ), "christmas" );
connect( match, SIGNAL( activated( int ) ), this, SLOT( updateData() ) );