diff --git a/packages/survey-creator-core/src/components/action-container-view-model.ts b/packages/survey-creator-core/src/components/action-container-view-model.ts index 2253629bb1..47a7573c87 100644 --- a/packages/survey-creator-core/src/components/action-container-view-model.ts +++ b/packages/survey-creator-core/src/components/action-container-view-model.ts @@ -212,7 +212,7 @@ export class SurveyElementAdornerBase e this._renderedCollapsed = !val; }, () => !this.renderedCollapsed); public set renderedCollapsed(val: boolean) { - if (this.animationAllowed) this.expandCollapseAnimationRunning = true; + if (this.animationAllowed && val !== this.renderedCollapsed) this.expandCollapseAnimationRunning = true; this.animationCollapsed.sync(!val); } public get renderedCollapsed(): boolean {