From 8afb12a340a2d6dc0d37c9cb3f671add463b4ec0 Mon Sep 17 00:00:00 2001 From: Stefan Derkits Date: Tue, 25 Jun 2013 16:38:09 +0200 Subject: [PATCH] added Acoustic & Electric songtype --- src/libtomahawk/playlist/dynamic/echonest/EchonestControl.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libtomahawk/playlist/dynamic/echonest/EchonestControl.cpp b/src/libtomahawk/playlist/dynamic/echonest/EchonestControl.cpp index 70abbaf83..16c33576b 100644 --- a/src/libtomahawk/playlist/dynamic/echonest/EchonestControl.cpp +++ b/src/libtomahawk/playlist/dynamic/echonest/EchonestControl.cpp @@ -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() ) );