make ratio in torrent view be 4 digits instead of 3, to match summary details pane

This commit is contained in:
Marcos Pinto 2007-06-22 22:46:19 +00:00
commit 27c55eb8c7

View file

@ -392,7 +392,7 @@ class DelugeGTK:
if ratio == -1:
ratio_str = _("Unknown")
else:
ratio_str = "%.2f"%ratio
ratio_str = "%.3f"%ratio
cell.set_property('text', ratio_str)