Commit 3b1532ff authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

fix draw frozenPane

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@54206 954022d7-b5bf-4e40-9824-e11837661b57
parent d6239ce4
......@@ -3918,8 +3918,10 @@ function DrawingObjects() {
c2 = Math.min(range.c2, vr.c2);
r1 = Math.max(range.r1, vr.r1);
r2 = Math.min(range.r2, vr.r2);
tmpRange = asc_Range(c1, r1, c2, r2);
_this._drawWorksheetLayer(tmpRange);
if (c1 <= c2 && r1 <= r2) {
tmpRange = asc_Range(c1, r1, c2, r2);
_this._drawWorksheetLayer(tmpRange);
}
worksheet._drawFrozenPaneLines();
};
......
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