mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-09 09:02:31 -06:00
BUGFIX: Fix speed limit sliders initialization in Web UI
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
- BUGFIX: Fix about dialog layout
|
- BUGFIX: Fix about dialog layout
|
||||||
- BUGFIX: Remember previously selected paths in torrent creation dialog
|
- BUGFIX: Remember previously selected paths in torrent creation dialog
|
||||||
- BUGFIX: Added missing right-click menu icon in Web UI
|
- BUGFIX: Added missing right-click menu icon in Web UI
|
||||||
|
- BUGFIX: Fix speed limit sliders initialization in Web UI
|
||||||
|
|
||||||
* Tue Jul 27 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.3.0
|
* Tue Jul 27 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.3.0
|
||||||
- FEATURE: Simplified torrent root folder renaming/truncating (< v2.3.0 is no longer forward compatible)
|
- FEATURE: Simplified torrent root folder renaming/truncating (< v2.3.0 is no longer forward compatible)
|
||||||
|
|||||||
@@ -30,6 +30,8 @@ MochaUI.extend({
|
|||||||
var tmp = data.toInt();
|
var tmp = data.toInt();
|
||||||
if(tmp > 0) {
|
if(tmp > 0) {
|
||||||
maximum = tmp / 1024.
|
maximum = tmp / 1024.
|
||||||
|
} else {
|
||||||
|
maximum = 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Get torrent upload limit
|
// Get torrent upload limit
|
||||||
@@ -115,6 +117,8 @@ MochaUI.extend({
|
|||||||
var tmp = data.toInt();
|
var tmp = data.toInt();
|
||||||
if(tmp > 0) {
|
if(tmp > 0) {
|
||||||
maximum = tmp / 1024.
|
maximum = tmp / 1024.
|
||||||
|
} else {
|
||||||
|
maximum = 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Get torrent download limit
|
// Get torrent download limit
|
||||||
|
|||||||
Reference in New Issue
Block a user