Commit 9c3e021e authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix Bug 32524 - Набор текста в пустую область рабочей области считается изменением документа

parent 6ec84b22
...@@ -2821,6 +2821,10 @@ CPresentation.prototype = ...@@ -2821,6 +2821,10 @@ CPresentation.prototype =
if ( true === editor.isViewMode ) if ( true === editor.isViewMode )
return false; return false;
if(!this.Slides[this.CurPage] || !this.Slides[this.CurPage].graphicObjects || this.Slides[this.CurPage].graphicObjects.selectedObjects.length === 0)
{
return;
}
var Code; var Code;
if (null != e.Which) if (null != e.Which)
Code = e.Which; Code = e.Which;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment