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

Left goes to the left, right to the right

This commit is contained in:
Anton Romanov
2016-01-20 12:45:55 -08:00
parent 1e6b8b3747
commit c068d8c9e3

View File

@@ -408,7 +408,7 @@ Query::resultSorter( const result_ptr& left, const result_ptr& right )
return !left->isPreview();
}
return right->resolvedBy()->weight() < left->resolvedBy()->weight();
return left->resolvedBy()->weight() > right->resolvedBy()->weight();
}
if ( left->isPreview() != right->isPreview() )