diff --git a/src/clippy/project_list.cpp b/src/clippy/project_list.cpp index 31f628c..5409a42 100644 --- a/src/clippy/project_list.cpp +++ b/src/clippy/project_list.cpp @@ -122,7 +122,7 @@ Project* ProjectList::GetCurrentProject_() { if (!result) { result = &p; } else { - if (*result > p) { + if (*result < p) { result = &p; } }