Commit 798ab4d4 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 29016 - Множественные ошибки в консоли при повторном применении undo после...

Bug 29016 - Множественные ошибки в консоли при повторном применении undo после copy&paste диаграммы на новую страницу и ввода произвольного значения

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@61758 954022d7-b5bf-4e40-9824-e11837661b57
parent 8ecf2a8b
......@@ -990,8 +990,9 @@ var historyitem_Drawing_SetGraphicObject = 11;
var historyitem_SetSimplePos = 12;
var historyitem_SetExtent = 13;
var historyitem_SetWrapPolygon = 14;
var historyitem_Drawing_SetLocked = 15;// Устанавливаем привязку к конкретному параграфу
var historyitem_Drawing_SetRelativeHeight = 15;// Устанавливаем Z-Index
var historyitem_Drawing_SetLocked = 15;// Устанавливаем привязку к конкретному параграфу]
var historyitem_Drawing_SetRelativeHeight = 16;// Устанавливаем Z-Index
var historyitem_Drawing_SetEffectExtent = 17;// Устанавливаем EffectExtent
......
......@@ -180,6 +180,19 @@ CHistory.prototype.UndoRedoPrepare = function (oRedoObjectParam, bUndo) {
this.workbook.bUndoChanges = true;
else
this.workbook.bRedoChanges = true;
if(!window["NATIVE_EDITOR_ENJINE"]) {
var wsViews = Asc["editor"].wb.wsViews;
for (var i = 0; i < wsViews.length; ++i) {
if (wsViews[i] && wsViews[i].objectRender && wsViews[i].objectRender.controller) {
wsViews[i].objectRender.controller.resetSelection();
}
if ( wsViews[i].isChartAreaEditMode ) {
wsViews[i].isChartAreaEditMode = false;
wsViews[i].arrActiveChartsRanges = [];
}
}
}
};
CHistory.prototype.RedoAdd = function(oRedoObjectParam, Class, Type, sheetid, range, Data, LocalChange)
{
......
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