mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 15:07:22 -06:00
BUGFIX: Fix global download rate limiting from Web UI
This commit is contained in:
@@ -7,6 +7,7 @@
|
|||||||
- BUGFIX: Use Wildcard matching instead of full regex in RSS feed downloader
|
- 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: 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: 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
|
- 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
|
* Wed Dec 23 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.3
|
||||||
|
|||||||
@@ -120,7 +120,7 @@ applyPreferences = function() {
|
|||||||
|
|
||||||
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');
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user