Commit 50e00852 authored by GoshaZotov's avatar GoshaZotov

fix bug 32564 - [Drag&Drop] Не происходит удаление формата перенесенного...

fix bug 32564  -  [Drag&Drop] Не происходит удаление формата перенесенного фрагмента форматированной таблицы
parent 646994ad
...@@ -4877,11 +4877,14 @@ Woorksheet.prototype._moveRange=function(oBBoxFrom, oBBoxTo, copyRange){ ...@@ -4877,11 +4877,14 @@ Woorksheet.prototype._moveRange=function(oBBoxFrom, oBBoxTo, copyRange){
if(copyRange) if(copyRange)
oTempRow[j + offset.offsetCol] = cell.clone(); oTempRow[j + offset.offsetCol] = cell.clone();
else else
{
cell.setTableStyle(null);
oTempRow[j + offset.offsetCol] = cell; oTempRow[j + offset.offsetCol] = cell;
} }
} }
} }
} }
}
if(false == this.workbook.bUndoChanges && (false == this.workbook.bRedoChanges || true == this.workbook.bCollaborativeChanges)) if(false == this.workbook.bUndoChanges && (false == this.workbook.bRedoChanges || true == this.workbook.bCollaborativeChanges))
{ {
History.LocalChange = true; History.LocalChange = true;
......
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