Commit 3f84d323 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Перенес создание точки в истории до copyWorksheet в wbView

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68041 954022d7-b5bf-4e40-9824-e11837661b57
parent 08d67ac6
...@@ -1922,6 +1922,7 @@ var editor; ...@@ -1922,6 +1922,7 @@ var editor;
t.wb._initCommentsToSave(); t.wb._initCommentsToSave();
// ToDo перейти от wsViews на wsViewsId (сейчас вызываем раньше, чем в модели, т.к. там будет sortDependency // ToDo перейти от wsViews на wsViewsId (сейчас вызываем раньше, чем в модели, т.к. там будет sortDependency
// и cleanCellCache, который создаст уже скопированный лист(и splice сработает неправильно)) // и cleanCellCache, который создаст уже скопированный лист(и splice сработает неправильно))
History.Create_NewPoint();
t.wb.copyWorksheet(i, where); t.wb.copyWorksheet(i, where);
t.wbModel.copyWorksheet(i, where, newName); t.wbModel.copyWorksheet(i, where, newName);
// Делаем активным скопированный // Делаем активным скопированный
......
...@@ -2041,7 +2041,7 @@ Workbook.prototype.createWorksheet=function(indexBefore, sName, sId){ ...@@ -2041,7 +2041,7 @@ Workbook.prototype.createWorksheet=function(indexBefore, sName, sId){
Workbook.prototype.copyWorksheet=function(index, insertBefore, sName, sId, bFromRedo){ Workbook.prototype.copyWorksheet=function(index, insertBefore, sName, sId, bFromRedo){
//insertBefore - optional //insertBefore - optional
if(index >= 0 && index < this.aWorksheets.length){ if(index >= 0 && index < this.aWorksheets.length){
History.Create_NewPoint();
History.TurnOff(); History.TurnOff();
var wsActive = this.getActiveWs(); var wsActive = this.getActiveWs();
var wsFrom = this.aWorksheets[index]; var wsFrom = this.aWorksheets[index];
......
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