diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-04-20 02:26:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-04-20 02:26:23 +0100 |
| commit | 98499a61e17e68c438e56fd8854081a4c98b15ad (patch) | |
| tree | daa2d57f826486ee05fef3fc5fc7ba5af56f789b /src/lib/format.cc | |
| parent | f2989966b2871ac5fc5f78c2a3ce7867f344b7cd (diff) | |
Somewhat hacky but seemingly functional frame back/forward (rest of #68).
Diffstat (limited to 'src/lib/format.cc')
| -rw-r--r-- | src/lib/format.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/format.cc b/src/lib/format.cc index 640eee167..8c3d0d8ad 100644 --- a/src/lib/format.cc +++ b/src/lib/format.cc @@ -50,7 +50,7 @@ FixedFormat::name () const s << _nickname << N_(" ("); } - s << setprecision(3) << (_ratio / 100.0) << N_(":1"); + s << setprecision(3) << _ratio << N_(":1"); if (!_nickname.empty ()) { s << N_(")"); |
