Commit c22bf5c0 authored by GoshaZotov's avatar GoshaZotov

+ previous revision

parent c511a408
...@@ -9518,7 +9518,10 @@ ...@@ -9518,7 +9518,10 @@
var styleForCurTable = t.model.workbook.TableStyles.AllStyles[styleInfo.Name]; var styleForCurTable = t.model.workbook.TableStyles.AllStyles[styleInfo.Name];
var headerRowCount = !!(null === table.HeaderRowCount || table.HeaderRowCount > 0); var headerRowCount = !!(null === table.HeaderRowCount || table.HeaderRowCount > 0);
dxf = styleForCurTable.getStyle(table.Ref, pasteRow, pasteCol, styleInfo, headerRowCount, table.HeaderRowCount); var bbox = {r1: 0, c1: 0, r2: table.Ref.r2 - table.Ref.r1, c2: table.Ref.c2 - table.Ref.c1};
pasteRow = pasteRow - table.Ref.r1;
pasteCol = pasteCol - table.Ref.c1;
dxf = styleForCurTable.getStyle(bbox, pasteRow, pasteCol, styleInfo, headerRowCount, table.TotalsRowCount);
} }
return dxf; return dxf;
......
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