mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 02:27:09 -07: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
8d9789f51b
commit
ac62a708de
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue