Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is pending Details

main
caiyiling 2026-05-19 13:32:40 +08:00
commit 2a68b40875
1 changed files with 3 additions and 3 deletions

View File

@ -95,15 +95,15 @@
<span>{{ $t('trials:reading:Segmentations:title:Show:Fill&Outline') }}</span>
<div style="display: flex;">
<div :class="['tool-item', SegmentConfig.renderOutline && SegmentConfig.renderFill ? 'tool-item-active' : '']"
:title="$t('trials:dicom-show:Eraser')" @click.stop="changeSegmentConfig(true, true)">
:title="$t('trials:dicom-show:fill_outline')" @click.stop="changeSegmentConfig(true, true)">
<svg-icon icon-class="fill_outline" class="svg-icon" />
</div>
<div :class="['tool-item', SegmentConfig.renderOutline && !SegmentConfig.renderFill ? 'tool-item-active' : '']"
:title="$t('trials:dicom-show:Eraser')" @click.stop="changeSegmentConfig(true, false)">
:title="$t('trials:dicom-show:outline')" @click.stop="changeSegmentConfig(true, false)">
<svg-icon icon-class="outline" class="svg-icon" />
</div>
<div :class="['tool-item', !SegmentConfig.renderOutline && SegmentConfig.renderFill ? 'tool-item-active' : '']"
:title="$t('trials:dicom-show:Eraser')" @click.stop="changeSegmentConfig(false, true)">
:title="$t('trials:dicom-show:fill')" @click.stop="changeSegmentConfig(false, true)">
<svg-icon icon-class="fill" class="svg-icon" />
</div>