Commit c3283034 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Переход от worksheet._getMergedCellsRange на model.getMergedByCell

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50520 954022d7-b5bf-4e40-9824-e11837661b57
parent 30bed297
......@@ -5645,7 +5645,7 @@
getSelectionInfo: function (bExt) {
var c_opt = this.settings.cells;
var activeCell = this.activeRange;
var mc = this._getMergedCellsRange(activeCell.startCol, activeCell.startRow);
var mc = this.model.getMergedByCell(activeCell.startRow, activeCell.startCol);
var c1 = mc ? mc.c1 : activeCell.startCol;
var r1 = mc ? mc.r1 : activeCell.startRow;
var c = this._getVisibleCell(c1, r1);
......
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