mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-30 18:50:11 +08:00
Speedlimitdlg: raise slider default value to 10000. Closes #6150.
Old value 1000 (KB/s) can be a bit small for modern internet.
This commit is contained in:
parent
e178e70053
commit
14a39ba3c3
@ -104,7 +104,7 @@ void SpeedLimitDialog::setupDialog(long max_slider, long val) const
|
||||
if (val < 0)
|
||||
val = 0;
|
||||
if (max_slider <= 0)
|
||||
max_slider = 1000;
|
||||
max_slider = 10000;
|
||||
// This can happen for example if global rate limit is lower
|
||||
// than torrent rate limit.
|
||||
if (val > max_slider)
|
||||
|
Loading…
Reference in New Issue
Block a user