Higher maximum download limit

This commit is contained in:
Christophe Dumez
2010-09-25 08:04:36 +00:00
parent a7e4e0273a
commit 1940bc4e73
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ class SpeedLimitDialog : public QDialog, private Ui_bandwidth_dlg {
} }
// -2: if cancel // -2: if cancel
static long askSpeedLimit(bool *ok, QString title, long default_value, long max_value=1024000) { static long askSpeedLimit(bool *ok, QString title, long default_value, long max_value=10240000) {
SpeedLimitDialog dlg; SpeedLimitDialog dlg;
dlg.setWindowTitle(title); dlg.setWindowTitle(title);
dlg.setMaxValue(max_value/1024.); dlg.setMaxValue(max_value/1024.);

View File

@@ -126,7 +126,7 @@ MochaUI.extend({
if(hash == "global") { if(hash == "global") {
var dl_limit = maximum; var dl_limit = maximum;
if(dl_limit < 0) dl_limit = 0; if(dl_limit < 0) dl_limit = 0;
maximum = 1000; maximum = 10000;
var mochaSlide = new Slider($('dllimitSliderarea'), $('dllimitSliderknob'), { var mochaSlide = new Slider($('dllimitSliderarea'), $('dllimitSliderknob'), {
steps: maximum, steps: maximum,
offset: 0, offset: 0,