1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 06:07:37 +02:00

fix strange Bug with QComboBox

This commit is contained in:
Stefan Derkits
2013-01-16 15:32:40 +01:00
parent 6635b084f7
commit d4c7e8cc1b

View File

@@ -641,7 +641,7 @@ EchonestGenerator::loadStylesMoodsAndGenres()
} }
s_moods = parts[ 0 ].split( "|" ); s_moods = parts[ 0 ].split( "|" );
s_styles = parts[ 1 ].split( "|" ); s_styles = parts[ 1 ].split( "|" );
s_genres = parts[ 2 ].split( " | "); s_genres = parts[ 2 ].split( "|");
} }
} }