завершение обновления с настройками
This commit is contained in:
2025-01-17 01:35:43 +03:00
parent 01da3b3a70
commit 28fe6ee235
8 changed files with 135 additions and 18 deletions

View File

@@ -85,6 +85,7 @@ public class OpenCurrentProject extends Pass<db_project_info> {
//как и отображать дерево.
target = project;
target.Open();
target.SynchronizeSapforProperties();
root_changes = false;
return;
}
@@ -92,11 +93,13 @@ public class OpenCurrentProject extends Pass<db_project_info> {
target = new db_project_info(dir);
new_root = target.CreateVersionsTree();
target.Open();
target.SynchronizeSapforProperties();
break;
case ProjectInfo:
//если нам суют версию. значит уже априори корень не сменится.
root_changes = false;
target.Open();
target.SynchronizeSapforProperties();
break;
}
}