[PE] Fix focus of position settings in advanced settings
This commit is contained in:
parent
32f018a950
commit
981391fe09
|
@ -185,7 +185,8 @@ define([ 'text!presentationeditor/main/app/template/ChartSettingsAdvanced.tem
|
|||
{ value: 'left', displayValue: this.textTopLeftCorner },
|
||||
{ value: 'center', displayValue: this.textCenter }
|
||||
],
|
||||
editable: false
|
||||
editable: false,
|
||||
takeFocusOnClose: true
|
||||
});
|
||||
|
||||
this.cmbFromY = new Common.UI.ComboBox({
|
||||
|
@ -197,7 +198,8 @@ define([ 'text!presentationeditor/main/app/template/ChartSettingsAdvanced.tem
|
|||
{ value: 'left', displayValue: this.textTopLeftCorner },
|
||||
{ value: 'center', displayValue: this.textCenter }
|
||||
],
|
||||
editable: false
|
||||
editable: false,
|
||||
takeFocusOnClose: true
|
||||
});
|
||||
|
||||
// Alt Text
|
||||
|
|
|
@ -188,7 +188,8 @@ define([ 'text!presentationeditor/main/app/template/ImageSettingsAdvanced.tem
|
|||
{ value: 'left', displayValue: this.textTopLeftCorner },
|
||||
{ value: 'center', displayValue: this.textCenter }
|
||||
],
|
||||
editable: false
|
||||
editable: false,
|
||||
takeFocusOnClose: true
|
||||
});
|
||||
|
||||
this.cmbFromY = new Common.UI.ComboBox({
|
||||
|
@ -200,7 +201,8 @@ define([ 'text!presentationeditor/main/app/template/ImageSettingsAdvanced.tem
|
|||
{ value: 'left', displayValue: this.textTopLeftCorner },
|
||||
{ value: 'center', displayValue: this.textCenter }
|
||||
],
|
||||
editable: false
|
||||
editable: false,
|
||||
takeFocusOnClose: true
|
||||
});
|
||||
|
||||
// Rotation
|
||||
|
|
|
@ -193,7 +193,8 @@ define([ 'text!presentationeditor/main/app/template/ShapeSettingsAdvanced.tem
|
|||
{ value: 'left', displayValue: this.textTopLeftCorner },
|
||||
{ value: 'center', displayValue: this.textCenter }
|
||||
],
|
||||
editable: false
|
||||
editable: false,
|
||||
takeFocusOnClose: true
|
||||
});
|
||||
|
||||
this.cmbFromY = new Common.UI.ComboBox({
|
||||
|
@ -205,7 +206,8 @@ define([ 'text!presentationeditor/main/app/template/ShapeSettingsAdvanced.tem
|
|||
{ value: 'left', displayValue: this.textTopLeftCorner },
|
||||
{ value: 'center', displayValue: this.textCenter }
|
||||
],
|
||||
editable: false
|
||||
editable: false,
|
||||
takeFocusOnClose: true
|
||||
});
|
||||
|
||||
// Margins
|
||||
|
|
|
@ -190,7 +190,8 @@ define([ 'text!presentationeditor/main/app/template/TableSettingsAdvanced.tem
|
|||
{ value: 'left', displayValue: this.textTopLeftCorner },
|
||||
{ value: 'center', displayValue: this.textCenter }
|
||||
],
|
||||
editable: false
|
||||
editable: false,
|
||||
takeFocusOnClose: true
|
||||
});
|
||||
|
||||
this.cmbFromY = new Common.UI.ComboBox({
|
||||
|
@ -202,7 +203,8 @@ define([ 'text!presentationeditor/main/app/template/TableSettingsAdvanced.tem
|
|||
{ value: 'left', displayValue: this.textTopLeftCorner },
|
||||
{ value: 'center', displayValue: this.textCenter }
|
||||
],
|
||||
editable: false
|
||||
editable: false,
|
||||
takeFocusOnClose: true
|
||||
});
|
||||
|
||||
this._marginsChange = function(field, newValue, oldValue, eOpts, source, property){
|
||||
|
|
Loading…
Reference in a new issue