|
@@ -80,6 +80,7 @@ import {
|
|
|
showMeasuresStack,
|
|
|
showPathsStack,
|
|
|
showPathStack,
|
|
|
+ showTaggingsStack,
|
|
|
} from "@/env";
|
|
|
|
|
|
import type { ControlExpose } from "@/components/control-panl";
|
|
@@ -143,6 +144,7 @@ watchEffect((onCleanup) => {
|
|
|
const pop = currentModelStack.push(model as any);
|
|
|
showPathStack.push(ref(undefined));
|
|
|
showPathsStack.push(ref(false));
|
|
|
+ showTaggingsStack.push(ref(false));
|
|
|
|
|
|
selectOptions.value = [options[0]];
|
|
|
|
|
@@ -151,6 +153,7 @@ watchEffect((onCleanup) => {
|
|
|
smodel.leaveAlignment();
|
|
|
showPathsStack.pop();
|
|
|
showPathStack.pop();
|
|
|
+ showTaggingsStack.pop();
|
|
|
pop();
|
|
|
});
|
|
|
} else if (isCurrent.value) {
|