1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 15:27:54 +00:00

Merge pull request #2296 from buinsky/master

WebUI: Set global upload max limit to 10000 KB/s
This commit is contained in:
sledgehammer999 2014-12-20 16:52:58 +02:00
commit 506d9caf09

View File

@ -31,7 +31,10 @@ MochaUI.extend({
maximum = tmp / 1024.
}
else {
maximum = 1000
if (hash == "global")
maximum = 10000;
else
maximum = 1000;
}
}
// Get torrent upload limit
@ -39,7 +42,7 @@ MochaUI.extend({
if (hash == 'global') {
var up_limit = maximum;
if (up_limit < 0) up_limit = 0;
maximum = 1000;
maximum = 10000;
var mochaSlide = new Slider($('uplimitSliderarea'), $('uplimitSliderknob'), {
steps: maximum,
offset: 0,