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',
|
name: 'down_speed',
|
||||||
width: 80,
|
width: 80,
|
||||||
disabled: true,
|
disabled: true,
|
||||||
value: -1
|
value: -1,
|
||||||
|
minValue: -1
|
||||||
}, {
|
}, {
|
||||||
fieldLabel: _('Upload Speed'),
|
fieldLabel: _('Upload Speed'),
|
||||||
name: 'up_speed',
|
name: 'up_speed',
|
||||||
width: 80,
|
width: 80,
|
||||||
disabled: true,
|
disabled: true,
|
||||||
value: -1
|
value: -1,
|
||||||
|
minValue: -1
|
||||||
}, {
|
}, {
|
||||||
fieldLabel: _('Upload Slots'),
|
fieldLabel: _('Upload Slots'),
|
||||||
name: 'upload_slots',
|
name: 'upload_slots',
|
||||||
width: 80,
|
width: 80,
|
||||||
disabled: true,
|
disabled: true,
|
||||||
value: -1
|
value: -1,
|
||||||
|
minValue: -1
|
||||||
}, {
|
}, {
|
||||||
fieldLabel: _('Connections'),
|
fieldLabel: _('Connections'),
|
||||||
name: 'connections',
|
name: 'connections',
|
||||||
width: 80,
|
width: 80,
|
||||||
disabled: true,
|
disabled: true,
|
||||||
value: -1
|
value: -1,
|
||||||
|
minValue: -1
|
||||||
}]
|
}]
|
||||||
}]
|
}]
|
||||||
}]
|
}]
|
||||||
|
|
Loading…
Reference in New Issue