disable the move storage menu item, this won't be active until the remote file browser has been added

add decimal precision to the spinner strategy (although it doesn't seem to be working?)
This commit is contained in:
Damien Churchill 2009-06-05 07:19:47 +00:00
parent ef3b22691b
commit db36e9dbfa
3 changed files with 5 additions and 4 deletions

View File

@ -267,7 +267,8 @@ Ext.deluge.details.OptionsTab = Ext.extend(Ext.form.FormPanel, {
stragegy: new Ext.ux.form.Spinner.NumberStrategy({
minValue: -1,
maxValue: 99999,
incrementValue: 1
incrementValue: 1,
decimalPrecision: 1
}),
listeners: {
'spin': {

View File

@ -239,12 +239,12 @@ Deluge.Menus.Torrent = new Ext.menu.Menu({
icon: '/icons/recheck.png',
handler: Deluge.Menus.onTorrentAction,
scope: Deluge.Menus
}, {
/*}, {
id: 'move',
text: _('Move Storage'),
icon: '/icons/move.png',
handler: Deluge.Menus.onTorrentAction,
scope: Deluge.Menus
scope: Deluge.Menus*/
}]
});

File diff suppressed because one or more lines are too long