mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-31 11:35:24 +01:00
Fix the priority ordering of global search results
This commit is contained in:
parent
dc05c101a3
commit
e0beff096d
@ -604,7 +604,7 @@ GlobalSearchWidget::CombineAction GlobalSearchWidget::CanCombineResults(
|
||||
const int p1 = provider_order_.indexOf(r1.provider_->id());
|
||||
const int p2 = provider_order_.indexOf(r2.provider_->id());
|
||||
|
||||
return p2 > p1 ? RightPreferred : LeftPreferred;
|
||||
return p2 > p1 ? LeftPreferred : RightPreferred;
|
||||
}
|
||||
|
||||
void GlobalSearchWidget::CombineResults(const QModelIndex& superior, const QModelIndex& inferior) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user