[DE] Bug 44021 (#322)
This commit is contained in:
parent
67d523edea
commit
e19b8f9397
|
@ -241,9 +241,25 @@ define([
|
||||||
this.cmbOrientation.on('selected', _.bind(function (combo, record) {
|
this.cmbOrientation.on('selected', _.bind(function (combo, record) {
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps();
|
this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps();
|
||||||
|
|
||||||
|
if (this.properties.get_Orientation() !== record.value) {
|
||||||
|
this.properties.put_TopMargin(Common.Utils.Metric.fnRecalcToMM(record.value ? this.spnLeft.getNumberValue() : this.spnRight.getNumberValue()));
|
||||||
|
this.properties.put_BottomMargin(Common.Utils.Metric.fnRecalcToMM(record.value ? this.spnRight.getNumberValue() : this.spnLeft.getNumberValue()));
|
||||||
|
this.properties.put_LeftMargin(Common.Utils.Metric.fnRecalcToMM(record.value ? this.spnBottom.getNumberValue() : this.spnTop.getNumberValue()));
|
||||||
|
this.properties.put_RightMargin(Common.Utils.Metric.fnRecalcToMM(record.value ? this.spnTop.getNumberValue() : this.spnBottom.getNumberValue()));
|
||||||
|
|
||||||
|
this.spnTop.setValue(Common.Utils.Metric.fnRecalcFromMM(this.properties.get_TopMargin()), true);
|
||||||
|
this.spnBottom.setValue(Common.Utils.Metric.fnRecalcFromMM(this.properties.get_BottomMargin()), true);
|
||||||
|
this.spnLeft.setValue(Common.Utils.Metric.fnRecalcFromMM(this.properties.get_LeftMargin()), true);
|
||||||
|
this.spnRight.setValue(Common.Utils.Metric.fnRecalcFromMM(this.properties.get_RightMargin()), true);
|
||||||
|
|
||||||
|
var h = this.properties.get_H();
|
||||||
|
this.properties.put_H(this.properties.get_W());
|
||||||
|
this.properties.put_W(h);
|
||||||
this.properties.put_Orientation(record.value);
|
this.properties.put_Orientation(record.value);
|
||||||
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
|
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}, this));
|
}, this));
|
||||||
|
|
||||||
this.cmbMultiplePages = new Common.UI.ComboBox({
|
this.cmbMultiplePages = new Common.UI.ComboBox({
|
||||||
|
@ -356,6 +372,8 @@ define([
|
||||||
props.put_Gutter(Common.Utils.Metric.fnRecalcToMM(this.spnGutter.getNumberValue()));
|
props.put_Gutter(Common.Utils.Metric.fnRecalcToMM(this.spnGutter.getNumberValue()));
|
||||||
props.put_GutterAtTop(this.cmbGutterPosition.getValue() ? true : false);
|
props.put_GutterAtTop(this.cmbGutterPosition.getValue() ? true : false);
|
||||||
props.put_MirrorMargins(this.cmbMultiplePages.getValue() ? true : false);
|
props.put_MirrorMargins(this.cmbMultiplePages.getValue() ? true : false);
|
||||||
|
props.put_H(this.properties.get_H());
|
||||||
|
props.put_W(this.properties.get_W());
|
||||||
return props;
|
return props;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue