fix the widths on the input boxes, whitespace changes too

This commit is contained in:
Damien Churchill 2011-05-06 19:02:54 +01:00
parent d362a6ceba
commit 06f025f4bd
1 changed files with 70 additions and 70 deletions

View File

@ -60,7 +60,7 @@ Deluge.add.UrlWindow = Ext.extend(Deluge.add.Window, {
fieldLabel: _('Url'),
id: 'url',
name: 'url',
anchor: '100%'
width: '97%'
});
this.urlField.on('specialkey', this.onAdd, this);
@ -68,7 +68,7 @@ Deluge.add.UrlWindow = Ext.extend(Deluge.add.Window, {
fieldLabel: _('Cookies'),
id: 'cookies',
name: 'cookies',
anchor: '100%'
width: '97%'
});
this.cookieField.on('specialkey', this.onAdd, this);
},