Skip to content
Snippets Groups Projects
Commit 01a93892 authored by mathias.chouet's avatar mathias.chouet
Browse files

Chargement de session: meilleure détection des dépendances

parent 0abdc81a
No related branches found
No related tags found
1 merge request!40Resolve "Amélioration du système de paramètres liés"
......@@ -34,12 +34,16 @@ export class DialogLoadSessionComponent {
for (const c of this.calculators) {
c.selected = true;
}
// re-run dependency checking
this.checkLinkedParamsDependencies();
}
public selectNone() {
for (const c of this.calculators) {
c.selected = false;
}
// re-run dependency checking
this.checkLinkedParamsDependencies();
}
public checkLinkedParamsDependencies() {
......
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