Author: damoxc
Revision: 5568
Log:
increase the widths of the textfields and pass in inputValue rather
than value to the radiogroup
Diff:
Modified: trunk/deluge/ui/web/js/Deluge.Preferences.Downloads.js
===================================================================
--- trunk/deluge/ui/web/js/Deluge.Preferences.Downloads.js 2009-07-29
08:55:24 UTC (rev 5567)
+++ trunk/deluge/ui/web/js/Deluge.Preferences.Downloads.js 2009-07-29
08:58:28 UTC (rev 5568)
@@ -24,17 +24,17 @@
optMan.bind('download_location', fieldset.add({
name: 'download_location',
fieldLabel: _('Download to'),
- width: 125
+ width: 160
}));
optMan.bind('move_completed_path', fieldset.add({
name: 'move_completed_path',
fieldLabel: _('Move completed to'),
- width: 125
+ width: 160
}));
optMan.bind('torrentfiles_location', fieldset.add({
name: 'torrentfiles_location',
fieldLabel: _('Copy of .torrent files to'),
- width: 125
+ width: 160
}));
fieldset = this.add({
@@ -49,8 +49,8 @@
name: 'compact_allocation',
labelSeparator: '',
items: [
- {boxLabel: _('Compact') + ' ',
value: true},
- {boxLabel: _('Full'), value: false}
+ {boxLabel: _('Compact') + ' ',
inputValue: true},
+ {boxLabel: _('Full'), inputValue: false}
]
}));
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---