Skip to content
Snippets Groups Projects
Commit cc9b6071 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

Fix locator filter order.

parent ddaa9dca
No related merge requests found
......@@ -68,6 +68,8 @@ namespace {
{
if (first->priority() < second->priority())
return true;
if (first->priority() > second->priority())
return false;
if (first->id().compare(second->id(), Qt::CaseInsensitive) < 0)
return true;
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment