Commit a10aca4d authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix Bug 33022

parent 9b563181
......@@ -3160,7 +3160,11 @@ CPresentation.prototype =
// Возвращаем выделенный текст, если в выделении не более 1 параграфа, и там нет картинок, нумерации страниц и т.д.
Get_SelectedText : function(bClearText)
{
return this.Slides[this.CurPage].graphicObjects.Get_SelectedText(bClearText);
if(this.Slides[this.CurPage]){
return this.Slides[this.CurPage].graphicObjects.Get_SelectedText(bClearText);
}
return "";
},
//-----------------------------------------------------------------------------------
......
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