mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-05 11:24:15 +00:00
Fix slider for per torrent speed limits when no global speed limit has been set. Closes #6046.
This commit is contained in:
parent
26e8072c84
commit
5c4db0fa17
@ -103,7 +103,7 @@ void SpeedLimitDialog::setupDialog(long max_slider, long val) const
|
|||||||
{
|
{
|
||||||
if (val < 0)
|
if (val < 0)
|
||||||
val = 0;
|
val = 0;
|
||||||
if (max_slider < 0)
|
if (max_slider <= 0)
|
||||||
max_slider = 1000;
|
max_slider = 1000;
|
||||||
// This can happen for example if global rate limit is lower
|
// This can happen for example if global rate limit is lower
|
||||||
// than torrent rate limit.
|
// than torrent rate limit.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user