diff --git a/Changelog b/Changelog index 277e16466..c2fca1d5c 100644 --- a/Changelog +++ b/Changelog @@ -7,6 +7,7 @@ - BUGFIX: Use Wildcard matching instead of full regex in RSS feed downloader - BUGFIX: Fix code for listening on a random port whenever it failed to listen on the one defined - BUGFIX: Use global maximum transfer rates as maximum values in per-torrent speed limiting dialogs + - BUGFIX: Fix global download rate limiting from Web UI - COSMETIC: Display a disconnected icon in status bar whenever qBittorrent failed to listen on the port defined * Wed Dec 23 2009 - Christophe Dumez - v2.0.3 diff --git a/src/webui/preferences.html b/src/webui/preferences.html index 239aed460..06e31261e 100644 --- a/src/webui/preferences.html +++ b/src/webui/preferences.html @@ -120,7 +120,7 @@ applyPreferences = function() { updateDlLimitEnabled = function() { if($defined($('dl_limit_checkbox').get('checked')) && $('dl_limit_checkbox').get('checked')) { - $('dl_limit_value').set('disabled', 'false'); + $('dl_limit_value').removeProperty('disabled'); } else { $('dl_limit_value').set('disabled', 'true'); }