Commit 7afca30b authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 28014 - [AutoSave] Не происходит обновления слайда при копировании и...

Bug 28014 - [AutoSave] Не происходит обновления слайда при копировании и вставке после добавления автофигуры в плейсхолдер другого слайда 

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60265 954022d7-b5bf-4e40-9824-e11837661b57
parent a1e2a379
......@@ -256,6 +256,7 @@ function CPresentation(DrawingDocument)
this.updateSlideIndex = false;
this.recalcMap = {};
this.bClearSearch = true;
this.bNeedUpdateTh = false;
this.needSelectPages = [];
this.forwardChangeThemeTimeOutId = null;
......@@ -475,6 +476,11 @@ CPresentation.prototype =
//}
this.needSelectPages.length = 0;
}
if(this.bNeedUpdateTh)
{
this.DrawingDocument.UpdateThumbnailsAttack();
this.bNeedUpdateTh = false;
}
}
if(this.Slides[this.CurPage])
this.Slides[this.CurPage].graphicObjects.updateSelectionState();
......@@ -3009,6 +3015,7 @@ CPresentation.prototype =
}
this.CurPage = las_slide_index + 1;
this.bGoToPage = true;
this.bNeedUpdateTh = true;
}
else if(this.Slides[this.CurPage])
......@@ -3821,6 +3828,8 @@ CPresentation.prototype =
{
this.insertSlide(insert_pos + i, removed_slides[i]);
}
this.Recalculate();
this.DrawingDocument.UpdateThumbnailsAttack();
},
//-----------------------------------------------------------------------------------
// Функции для работы с совместным редактирования
......
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