From e9fb8a3c1d7c8d32629760bad35bf6abc8222225 Mon Sep 17 00:00:00 2001 From: lzp Date: Thu, 19 Mar 2026 09:56:28 +0800 Subject: [PATCH] 111 --- .../Canvas/DepthCanvas/components/details-panel/index.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Canvas/DepthCanvas/components/details-panel/index.vue b/src/components/Canvas/DepthCanvas/components/details-panel/index.vue index f6eab4e..3cf1e93 100644 --- a/src/components/Canvas/DepthCanvas/components/details-panel/index.vue +++ b/src/components/Canvas/DepthCanvas/components/details-panel/index.vue @@ -10,7 +10,7 @@
- +
@@ -27,10 +27,10 @@ const layers = computed(() => layerManager.layers.value) const activeObject = ref(null) - const shapes = ['rect', 'line', 'path', 'triangle', 'polygon', 'ellipse'] - const isShape = computed(() => shapes.includes(activeObject.value?.type)) + // const shapes = ['rect', 'line', 'path', 'triangle', 'polygon', 'ellipse'] + // const isShape = computed(() => shapes.includes(activeObject.value?.type)) const isRepeat = computed(() => activeObject.value?.fill?.repeat === 'repeat') - const isShow = computed(() => isRepeat.value || isShape.value) + const isShow = computed(() => isRepeat.value) const updateActiveObject = () => { const obj = layers.value.find((v: any) => v.info.id === activeID.value)