From 370f99eabcb91ed43354c863301210376988c1f1 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 22 Jun 2026 16:58:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E5=89=B2=E7=90=83=E4=BD=93=E5=B7=A5?= =?UTF-8?q?=E5=85=B7=E8=A7=A6=E5=8F=91=E8=87=AA=E5=8A=A8=E8=AE=A1=E7=AE=97?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms3D/components/Segmentations.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue index 1a98ef19..71dc8bea 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue @@ -1577,7 +1577,7 @@ export default { }, segmentationModifiedCallback(evt) { const { detail } = evt; - let tools = [...this.ThresholdTools, ...this.tools] + let tools = [...this.ThresholdTools, ...this.tools, 'SphericalBrush'] if (!detail || detail.segmentIndex === 255 || !this.activeTool || !tools.includes(this.activeTool)) { return; } @@ -1642,12 +1642,12 @@ export default { contentMouseup() { try { // console.log("segment contentMouseup") - if (!this.drawing) return false if (this.timeoutId) { clearTimeout(this.timeoutId); this.timeoutId = null; } this.timeoutId = setTimeout(() => { + if (!this.drawing) return false this.timeoutId = null; this.drawing = false; let segmentGroup = this.segmentList.find(item => item.segmentationId === this.segmentationId)