1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-02 18:04:32 +00:00

- Fix global download rate limiting (Web UI)

This commit is contained in:
Christophe Dumez 2009-12-30 16:37:34 +00:00
parent ee9ca1ece7
commit a43a1f5b67

View File

@ -478,7 +478,7 @@
updateDlLimitEnabled = function() { updateDlLimitEnabled = function() {
if($defined($('dl_limit_checkbox').get('checked')) && $('dl_limit_checkbox').get('checked')) { if($defined($('dl_limit_checkbox').get('checked')) && $('dl_limit_checkbox').get('checked')) {
$('dl_limit_value').set('disabled', 'false'); $('dl_limit_value').removeProperty('disabled');
} else { } else {
$('dl_limit_value').set('disabled', 'true'); $('dl_limit_value').set('disabled', 'true');
} }