bill 7 months ago
parent
commit
754846e07e
2 changed files with 4 additions and 0 deletions
  1. 1 0
      src/app.vue
  2. 3 0
      src/views/registration/index.vue

+ 1 - 0
src/app.vue

@@ -103,6 +103,7 @@ const layoutStyles = computed(() => {
 <style scoped lang="scss">
 .editor-layout {
   --editor-menu-bottom: 0px;
+  background: #000;
   --left-pano-left: calc(var(--editor-menu-left) + var(--editor-menu-width));
 }
 

+ 3 - 0
src/views/registration/index.vue

@@ -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) {