From c984d62e9aa90a4c50b1ed24d335d473e34a756e Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 11 Oct 2022 18:55:06 +0300 Subject: [PATCH] [PE] Show guides when new guide is added --- apps/presentationeditor/main/app/controller/ViewTab.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/presentationeditor/main/app/controller/ViewTab.js b/apps/presentationeditor/main/app/controller/ViewTab.js index d6f1d432b..40122de89 100644 --- a/apps/presentationeditor/main/app/controller/ViewTab.js +++ b/apps/presentationeditor/main/app/controller/ViewTab.js @@ -260,6 +260,9 @@ define([ this.api.asc_addVerticalGuide(); else this.api.asc_addHorizontalGuide(); + + !this.api.asc_getShowGuides() && this.onGuidesShow(true); + Common.NotificationCenter.trigger('edit:complete', this.view); },