Commit 50e00852 authored by GoshaZotov's avatar GoshaZotov

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

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