fix choice project

This commit is contained in:
Timofey Khoruzhii 2023-02-02 15:39:03 +03:00
parent 75eb05bd1a
commit 46c83022c9

View file

@ -122,7 +122,7 @@ Project* ProjectList::GetCurrentProject_() {
if (!result) {
result = &p;
} else {
if (*result > p) {
if (*result < p) {
result = &p;
}
}