Browse Source

Improved UI

Related #1387
pull/1390/head
Ramiro Saenz 7 years ago
parent
commit
664a0361d9
  1. 19
      app/view/preferences/Preferences.js

19
app/view/preferences/Preferences.js

@ -269,30 +269,27 @@ Ext.define('Rambox.view.preferences.Preferences',{
,fieldLabel: 'Host' ,fieldLabel: 'Host'
,name: 'proxyHost' ,name: 'proxyHost'
,value: config.proxyHost ,value: config.proxyHost
,flex: 1 //,flex: 1
} }
,{ ,{
xtype: 'numberfield' xtype: 'numberfield'
,fieldLabel: 'Port' ,fieldLabel: 'Port'
,name: 'proxyPort' ,name: 'proxyPort'
,value: config.proxyPort ,value: config.proxyPort
,margin: '0 0 0 10'
} }
,{ ,{
xtype: 'textfield' xtype: 'textfield'
,fieldLabel: 'Login' ,fieldLabel: 'Login'
,name: 'proxyLogin' ,name: 'proxyLogin'
,value: config.proxyLogin ,value: config.proxyLogin
,margin: '0 0 0 10' ,emptyText: 'Optional'
,emptyText: 'optional'
} }
,{ ,{
xtype: 'textfield' xtype: 'textfield'
,fieldLabel: 'Password' ,fieldLabel: 'Password'
,name: 'proxyPassword' ,name: 'proxyPassword'
,value: config.proxyPassword ,value: config.proxyPassword
,margin: '0 0 0 10' ,emptyText: 'Optional'
,emptyText: 'optional'
} }
] ]
} }

Loading…
Cancel
Save