diff --git a/packages/mindplot/src/components/Topic.ts b/packages/mindplot/src/components/Topic.ts index e8ef5c89..e9cb8c5d 100644 --- a/packages/mindplot/src/components/Topic.ts +++ b/packages/mindplot/src/components/Topic.ts @@ -1012,6 +1012,10 @@ abstract class Topic extends NodeGraph { } } + // Hide inner shape ... + this.getInnerShape().setVisibility(value); + + // Hide text shape ... const textShape = this.getTextShape(); textShape.setVisibility(this.getShapeType() !== TopicShape.IMAGE ? value : false); }