Fix #1941 : Increase UIs max cache value to 999999 (15GiB)
This commit is contained in:
parent
ead734cbf0
commit
307ffe734a
|
@ -118,7 +118,7 @@
|
||||||
<property name="page_increment">10</property>
|
<property name="page_increment">10</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="GtkAdjustment" id="adjustment27">
|
<object class="GtkAdjustment" id="adjustment27">
|
||||||
<property name="upper">99999</property>
|
<property name="upper">999999</property>
|
||||||
<property name="value">100</property>
|
<property name="value">100</property>
|
||||||
<property name="step_increment">1</property>
|
<property name="step_increment">1</property>
|
||||||
<property name="page_increment">10</property>
|
<property name="page_increment">10</property>
|
||||||
|
|
|
@ -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