summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Churchill <damoxc@gmail.com>2011-11-24 17:09:10 +0000
committerDamien Churchill <damoxc@gmail.com>2011-11-24 17:09:10 +0000
commit4a43d6a63529ae33add9ec03959c160ba8a2ebd4 (patch)
treeefb8b1f553805772c5bafa9411017376b2bc3e44
parent1837d833c245afcb57da411ba4f37b99fcdbf03a (diff)
downloaddeluge-4a43d6a63529ae33add9ec03959c160ba8a2ebd4.tar.gz
deluge-4a43d6a63529ae33add9ec03959c160ba8a2ebd4.tar.bz2
deluge-4a43d6a63529ae33add9ec03959c160ba8a2ebd4.zip
data: fix type for progress column
-rw-r--r--deluge/ui/web/js/deluge-all/data/Torrent.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deluge/ui/web/js/deluge-all/data/Torrent.js b/deluge/ui/web/js/deluge-all/data/Torrent.js
index 33731fad0..045f15293 100644
--- a/deluge/ui/web/js/deluge-all/data/Torrent.js
+++ b/deluge/ui/web/js/deluge-all/data/Torrent.js
@@ -48,7 +48,7 @@ Ext.define('Deluge.data.Torrent', {
{name: 'name', type: 'string'},
{name: 'total_size', type: 'int'},
{name: 'state', type: 'string'},
- {name: 'progress', type: 'int'},
+ {name: 'progress', type: 'float'},
{name: 'num_seeds', type: 'int'},
{name: 'total_seeds', type: 'int'},
{name: 'num_peers', type: 'int'},