diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue index 205d0398..3ab942af 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue @@ -988,6 +988,13 @@ export default { this.cols = 2 this.activeViewportIndex = 1 } + if (localStorage.getItem('SegmentConfig') && this.readingTool === 3) { + let obj = JSON.parse(localStorage.getItem('SegmentConfig')) + this.SegmentConfig.renderOutline = obj.renderOutline + this.SegmentConfig.renderFill = obj.renderFill + this.SegmentConfig.fillAlpha = obj.fillAlpha + this.SegmentConfig.outlineWidth = obj.outlineWidth + } this.$nextTick(() => { this.loadRelatedTasks() 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 822dcd35..61994fb3 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue @@ -137,7 +137,7 @@ {{ $t('trials:reading:Segmentations:title:InactiveSegmentationsShow') - }} + }}