Commit 74360b70 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Переделал печать (ранее были проблемы с тем, что отрисовывались на каждую...

Переделал печать (ранее были проблемы с тем, что отрисовывались на каждую строчку все бордеры страницы. Баг http://bugzserver/show_bug.cgi?id=20738)
Теперь печать идет как draw (в _drawCells добавил необходимые параметры)
Также мы visibleRange выставляем при печати равным range страницы (иначе бордеры merge ячеек не печатались)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51585 954022d7-b5bf-4e40-9824-e11837661b57
parent 699f31d8
......@@ -3233,9 +3233,9 @@ function DrawingObjects() {
drawingCtx.clearRect( x1, y1, w, h );
drawingCtx.setFillStyle(worksheet.settings.cells.defaultState.background).fillRect(x1, y1, w, h);
worksheet._drawGrid(undefined, r_);
worksheet._drawCells(r_);
worksheet._drawCellsBorders(undefined, r_);
worksheet._drawGrid(/*drawingCtx*/undefined, r_);
worksheet._drawCells(/*drawingCtx*/undefined, r_);
worksheet._drawCellsBorders(/*drawingCtx*/undefined, r_);
}
}
}
......
This diff is collapsed.
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