From 27c55eb8c7923fcd3e1325be4863397b57249764 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Fri, 22 Jun 2007 22:46:19 +0000 Subject: [PATCH] make ratio in torrent view be 4 digits instead of 3, to match summary details pane --- src/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.py b/src/interface.py index 7e8318291..affbee5d2 100644 --- a/src/interface.py +++ b/src/interface.py @@ -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)