Commit 74231647 authored by GoshaZotov's avatar GoshaZotov

fix bug 32919

parent d0ad908c
......@@ -3690,7 +3690,16 @@ PasteProcessor.prototype =
//merge
oCurCell.Set_GridSpan(gridSpan);
if(vMerge != 1)
oCurCell.Set_VMerge(vmerge_Continue);
{
if(isMergedCell.r1 === i + activeRange.r1)
{
oCurCell.Set_VMerge(vmerge_Restart);
}
else
{
oCurCell.Set_VMerge(vmerge_Continue);
}
}
var oCurPar = oCurCell.Content.Content[0];
......
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