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

Поправил баг http://bugzserver/show_bug.cgi?id=24424

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56382 954022d7-b5bf-4e40-9824-e11837661b57
parent 32497385
...@@ -763,7 +763,7 @@ ...@@ -763,7 +763,7 @@
if (false === isSuccess) if (false === isSuccess)
return; return;
t.model.setRowHeight(Math.min(t.maxRowHeight, Math.max(y2 - y1 + t.height_1px, 0)), row, row); t.model.setRowHeight(Math.min(t.maxRowHeight, Math.max(y2 - y1, 0)), row, row);
t._cleanCache(asc_Range(0, row, t.cols.length - 1, row)); t._cleanCache(asc_Range(0, row, t.cols.length - 1, row));
t.changeWorksheet("update"); t.changeWorksheet("update");
t._updateVisibleRowsCount(); t._updateVisibleRowsCount();
...@@ -2736,6 +2736,8 @@ ...@@ -2736,6 +2736,8 @@
// ToDo возможно стоит оптимизировать, если будет тормозить // ToDo возможно стоит оптимизировать, если будет тормозить
drawRange = range.clone(true); drawRange = range.clone(true);
this._fixSelectionOfMergedCells(drawRange); this._fixSelectionOfMergedCells(drawRange);
// ToDo убрать это и переделать!!!
drawRange.normalize();
} }
var t = this; var t = this;
var ctx = (drawingCtx) ? drawingCtx : this.drawingCtx; var ctx = (drawingCtx) ? drawingCtx : this.drawingCtx;
...@@ -5924,6 +5926,7 @@ ...@@ -5924,6 +5926,7 @@
if (ar.type && ar.type !== c_oAscSelectionType.RangeCells) { return; } if (ar.type && ar.type !== c_oAscSelectionType.RangeCells) { return; }
// ToDo - переделать этот момент!!!!
var res = this.model.expandRangeByMerged(ar.clone(true)); var res = this.model.expandRangeByMerged(ar.clone(true));
if (ar.c1 !== res.c1 && ar.c1 !== res.c2) {ar.c1 = ar.c1 <= ar.c2 ? res.c1 : res.c2;} if (ar.c1 !== res.c1 && ar.c1 !== res.c2) {ar.c1 = ar.c1 <= ar.c2 ? res.c1 : res.c2;}
......
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