From c2388829bc00cc6a0e50332273f78315bd4606cd Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sun, 23 Dec 2012 21:08:30 +0100 Subject: [PATCH] * Forgot very bad match. --- src/libtomahawk/playlist/PlayableModel.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libtomahawk/playlist/PlayableModel.cpp b/src/libtomahawk/playlist/PlayableModel.cpp index b77530bea..65e82ce24 100644 --- a/src/libtomahawk/playlist/PlayableModel.cpp +++ b/src/libtomahawk/playlist/PlayableModel.cpp @@ -247,6 +247,8 @@ PlayableModel::queryData( const query_ptr& query, int column, int role ) const return tr( "Vague match" ); if ( score > 0.3 ) return tr( "Bad match" ); + if ( score > 0.0 ) + return tr( "Very bad match" ); return tr( "Not available" ); break;