From b5f2d55d2cad911396dfd052b731b3d7f4d8b5d0 Mon Sep 17 00:00:00 2001 From: Sergey Luzyanin Date: Mon, 3 Feb 2025 15:53:09 +0300 Subject: [PATCH] [bug] for bug 73026 --- slide/Editor/SlideShowAnnotations.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/slide/Editor/SlideShowAnnotations.js b/slide/Editor/SlideShowAnnotations.js index 0021a8d73f..ef51b8252c 100644 --- a/slide/Editor/SlideShowAnnotations.js +++ b/slide/Editor/SlideShowAnnotations.js @@ -280,6 +280,9 @@ function (window, undefined) { return true; }; CSlideShowAnnotations.prototype.canSaveAnnotations = function() { + if(!Asc.editor.canSave()) { + return false; + } return !this.isEmpty(); }; CSlideShowAnnotations.prototype.saveAnnotations = function () {