From c172bf07acfcdfee58115250d2e0d306e4c9460c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 2 Nov 2022 11:52:21 +0300 Subject: [PATCH] [PE] Fix guides/gridlines init values --- apps/presentationeditor/main/app/view/ViewTab.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/presentationeditor/main/app/view/ViewTab.js b/apps/presentationeditor/main/app/view/ViewTab.js index d59ee3fc5f..bd8e8e8344 100644 --- a/apps/presentationeditor/main/app/view/ViewTab.js +++ b/apps/presentationeditor/main/app/view/ViewTab.js @@ -294,7 +294,7 @@ define([ lock: [_set.disableOnStart], enableToggle: true, allowDepress: true, - pressed: Common.localStorage.getBool("pe-settings-showguides", true), + pressed: Common.localStorage.getBool("pe-settings-showguides"), split: true, menu: true, dataHint: '1', @@ -310,7 +310,7 @@ define([ lock: [_set.disableOnStart], enableToggle: true, allowDepress: true, - pressed: Common.localStorage.getBool("pe-settings-showgrid", true), + pressed: Common.localStorage.getBool("pe-settings-showgrid"), split: true, menu: true, dataHint: '1',