Commit 07ea693a authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix bug 33495

parent 4ce49c81
...@@ -6242,7 +6242,9 @@ ...@@ -6242,7 +6242,9 @@
lockRangePosTop = this.getCellTop(r1Recalc, /*pt*/1); lockRangePosTop = this.getCellTop(r1Recalc, /*pt*/1);
// Пересчитываем X и Y относительно видимой области // Пересчитываем X и Y относительно видимой области
lockRangePosLeft -= offsetX; lockRangePosLeft -= offsetX;
lockRangePosTop -= offsetY; lockRangePosTop -= offsetY;
lockRangePosLeft = this.cellsLeft > lockRangePosLeft ? this.cellsLeft : lockRangePosLeft;
lockRangePosTop = this.cellsTop > lockRangePosTop ? this.cellsTop : lockRangePosTop;
// Пересчитываем в px // Пересчитываем в px
lockRangePosLeft *= asc_getcvt(1/*pt*/, 0/*px*/, this._getPPIX()); lockRangePosLeft *= asc_getcvt(1/*pt*/, 0/*px*/, this._getPPIX());
lockRangePosTop *= asc_getcvt(1/*pt*/, 0/*px*/, this._getPPIY()); lockRangePosTop *= asc_getcvt(1/*pt*/, 0/*px*/, this._getPPIY());
......
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