Commit deeaae2a authored by Alexey.Musinov's avatar Alexey.Musinov

Merge branch 'develop' of https://github.com/ONLYOFFICE/sdkjs into develop

parents d110ed25 1d646ebe
......@@ -184,8 +184,9 @@ Processor3D.prototype._recalculateScaleWithMaxWidth = function()
}
else
{
//если будут проблемы с поворотом standard диграмм, раскомментровать!
//TODO протестировать, и если не будет проблем, то убрать if-else
if(Math.abs(this.angleOy) > Math.PI)
/*if(Math.abs(this.angleOy) > Math.PI)
{
//рассчитываем параметры диаграммы при оптимальной ширине
this.widthCanvas = optimalWidth + (this.left + this.right);
......@@ -204,7 +205,7 @@ Processor3D.prototype._recalculateScaleWithMaxWidth = function()
this._recalculateCameraDiff();
}
else
{
{*/
//рассчитываем параметры диаграммы при оптимальной ширине
this.widthCanvas = optimalWidth + (this.left + this.right);
var scaleX = this.scaleX;
......@@ -242,7 +243,7 @@ Processor3D.prototype._recalculateScaleWithMaxWidth = function()
this.widthCanvas = widthCanvas;
this._recalculateCameraDiff();
}
//}
}
};
......
This diff is collapsed.
......@@ -5247,6 +5247,7 @@ DrawingObjectsController.prototype =
{
this.selectNextObject(!e.shiftKey ? 1 : -1);
}
bRetValue = true;
}
else if ( e.keyCode == 13 && false === isViewMode ) // Enter
{
......
......@@ -2011,16 +2011,16 @@ function Binary_pPrWriter(memory, oNumIdMap, oBinaryHeaderFooterTableWriter, sav
if (null != pageBorders.ZOrder) {
this.bs.WriteItem(c_oSerPageBorders.ZOrder, function(){oThis.memory.WriteByte(pageBorders.ZOrder);});
}
if (null != pageBorders.Bottom) {
if (null != pageBorders.Bottom && !pageBorders.Bottom.IsNone()) {
this.bs.WriteItem(c_oSerPageBorders.Bottom, function(){oThis.WritePgBorder(pageBorders.Bottom);});
}
if (null != pageBorders.Left) {
if (null != pageBorders.Left && !pageBorders.Left.IsNone()) {
this.bs.WriteItem(c_oSerPageBorders.Left, function(){oThis.WritePgBorder(pageBorders.Left);});
}
if (null != pageBorders.Right) {
if (null != pageBorders.Right && !pageBorders.Right.IsNone()) {
this.bs.WriteItem(c_oSerPageBorders.Right, function(){oThis.WritePgBorder(pageBorders.Right);});
}
if (null != pageBorders.Top) {
if (null != pageBorders.Top && !pageBorders.Top.IsNone()) {
this.bs.WriteItem(c_oSerPageBorders.Top, function(){oThis.WritePgBorder(pageBorders.Top);});
}
}
......
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