mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-11 19:08:40 +00:00
fix the spinner limits in the label options
This commit is contained in:
parent
5e78daf726
commit
0857af98d0
1 changed files with 8 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue