Fix #1941 : Increase UIs max cache value to 999999 (15GiB)
This commit is contained in:
parent
714b7f3c55
commit
a3538c8937
|
@ -4135,7 +4135,7 @@ HTTP W/ Auth</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="invisible_char">●</property>
|
<property name="invisible_char">●</property>
|
||||||
<property name="xalign">1</property>
|
<property name="xalign">1</property>
|
||||||
<property name="adjustment">512 0 99999 1 10 0</property>
|
<property name="adjustment">512 0 999999 1 10 0</property>
|
||||||
<property name="numeric">True</property>
|
<property name="numeric">True</property>
|
||||||
<property name="update_policy">if-valid</property>
|
<property name="update_policy">if-valid</property>
|
||||||
</widget>
|
</widget>
|
||||||
|
|
|
@ -56,7 +56,7 @@ Deluge.preferences.Cache = Ext.extend(Ext.form.FormPanel, {
|
||||||
defaults: {
|
defaults: {
|
||||||
decimalPrecision: 0,
|
decimalPrecision: 0,
|
||||||
minValue: -1,
|
minValue: -1,
|
||||||
maxValue: 99999
|
maxValue: 999999
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
om.bind('cache_size', fieldset.add({
|
om.bind('cache_size', fieldset.add({
|
||||||
|
|
Loading…
Reference in New Issue