[DE] Negative values for page margins.
This commit is contained in:
parent
b3499e7361
commit
ed22963bf0
|
@ -108,7 +108,7 @@ define([
|
||||||
defaultUnit : "cm",
|
defaultUnit : "cm",
|
||||||
value: '1 cm',
|
value: '1 cm',
|
||||||
maxValue: 55.88,
|
maxValue: 55.88,
|
||||||
minValue: 0
|
minValue: -55.87
|
||||||
});
|
});
|
||||||
this.spinners.push(this.spnTop);
|
this.spinners.push(this.spnTop);
|
||||||
|
|
||||||
|
@ -119,7 +119,7 @@ define([
|
||||||
defaultUnit : "cm",
|
defaultUnit : "cm",
|
||||||
value: '1 cm',
|
value: '1 cm',
|
||||||
maxValue: 55.88,
|
maxValue: 55.88,
|
||||||
minValue: 0
|
minValue: -55.87
|
||||||
});
|
});
|
||||||
this.spinners.push(this.spnBottom);
|
this.spinners.push(this.spnBottom);
|
||||||
|
|
||||||
|
@ -158,7 +158,7 @@ define([
|
||||||
var errmsg = null;
|
var errmsg = null;
|
||||||
if (this.spnLeft.getNumberValue() + this.spnRight.getNumberValue() > this.maxMarginsW )
|
if (this.spnLeft.getNumberValue() + this.spnRight.getNumberValue() > this.maxMarginsW )
|
||||||
errmsg = this.txtMarginsW;
|
errmsg = this.txtMarginsW;
|
||||||
else if (this.spnTop.getNumberValue() + this.spnBottom.getNumberValue() > this.maxMarginsH )
|
else if (Math.abs(this.spnTop.getNumberValue() + this.spnBottom.getNumberValue()) > this.maxMarginsH )
|
||||||
errmsg = this.txtMarginsH;
|
errmsg = this.txtMarginsH;
|
||||||
if (errmsg) {
|
if (errmsg) {
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
|
|
Loading…
Reference in a new issue