mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 04:24:23 +00:00
- Fixed unlimited download limit problem (trayicon)
This commit is contained in:
parent
313b9b9bc0
commit
8422cb395a
@ -448,7 +448,7 @@ void options_imp::loadOptions(){
|
||||
checkUPnP->setChecked(settings.value(QString::fromUtf8("UPnP"), true).toBool());
|
||||
checkNATPMP->setChecked(settings.value(QString::fromUtf8("NAT-PMP"), true).toBool());
|
||||
intValue = settings.value(QString::fromUtf8("GlobalDLLimit"), -1).toInt();
|
||||
if(intValue != -1) {
|
||||
if(intValue > 0) {
|
||||
// Enabled
|
||||
checkDownloadLimit->setChecked(true);
|
||||
spinDownloadLimit->setEnabled(true);
|
||||
|
Loading…
x
Reference in New Issue
Block a user