From 46c83022c96e7920820ad18267c77b33432b0cbe Mon Sep 17 00:00:00 2001 From: Timofey Khoruzhii Date: Thu, 2 Feb 2023 15:39:03 +0300 Subject: [PATCH] fix choice project --- src/clippy/project_list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }