Commit 59d8975a authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix Bug 34279

parent dc75c7c8
...@@ -7102,8 +7102,11 @@ NoteSlide.prototype = ...@@ -7102,8 +7102,11 @@ NoteSlide.prototype =
// SLIDE ---------------------------- // SLIDE ----------------------------
function redrawSlide(slide, presentation, arrInd, pos, direction, arr_slides) function redrawSlide(slide, presentation, arrInd, pos, direction, arr_slides)
{ {
slide.recalculate(); if(slide)
presentation.DrawingDocument.OnRecalculatePage(slide.num, slide); {
slide.recalculate();
presentation.DrawingDocument.OnRecalculatePage(slide.num, slide);
}
if(direction == 0) if(direction == 0)
{ {
if(pos > 0) if(pos > 0)
......
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