BUGFIX: Fix global download rate limiting from Web UI

This commit is contained in:
Christophe Dumez
2009-12-30 16:38:46 +00:00
parent d227ed8b59
commit ec44efb261
2 changed files with 2 additions and 1 deletions

View File

@@ -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 <chris@qbittorrent.org> - v2.0.3

View File

@@ -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');
}