fix the spinner limits in the label options
This commit is contained in:
parent
5e78daf726
commit
0857af98d0
|
@ -147,25 +147,29 @@ Deluge.ux.LabelOptionsWindow = Ext.extend(Ext.Window, {
|
|||
name: 'down_speed',
|
||||
width: 80,
|
||||
disabled: true,
|
||||
value: -1
|
||||
value: -1,
|
||||
minValue: -1
|
||||
}, {
|
||||
fieldLabel: _('Upload Speed'),
|
||||
name: 'up_speed',
|
||||
width: 80,
|
||||
disabled: true,
|
||||
value: -1
|
||||
value: -1,
|
||||
minValue: -1
|
||||
}, {
|
||||
fieldLabel: _('Upload Slots'),
|
||||
name: 'upload_slots',
|
||||
width: 80,
|
||||
disabled: true,
|
||||
value: -1
|
||||
value: -1,
|
||||
minValue: -1
|
||||
}, {
|
||||
fieldLabel: _('Connections'),
|
||||
name: 'connections',
|
||||
width: 80,
|
||||
disabled: true,
|
||||
value: -1
|
||||
value: -1,
|
||||
minValue: -1
|
||||
}]
|
||||
}]
|
||||
}]
|
||||
|
|
Loading…
Reference in New Issue