Commit 82f4fa41 authored by Alexander.Trofimov's avatar Alexander.Trofimov

Поправил получение координат на Retina

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66538 954022d7-b5bf-4e40-9824-e11837661b57
parent 119e0ced
......@@ -6785,11 +6785,21 @@
// Пересчитываем X и Y относительно закрепленной области
xL += offsetX;
yL += offsetY;
// Пересчитываем в px
xL *= asc_getcvt( 1/*pt*/, 0/*px*/, this._getPPIX() );
yL *= asc_getcvt( 1/*pt*/, 0/*px*/, this._getPPIY() );
var width = this.getColumnWidth (this.activeRange.startCol, /*px*/0);
var height = this.getRowHeight(this.activeRange.startRow, /*px*/0);
if (AscBrowser.isRetina) {
xL >>= 1;
yL >>= 1;
width >>= 1;
height >>= 1;
}
return new asc_CRect (xL, yL, width, height);
};
......
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