From e65c3904235187eb6ba3ce03f7c576a7e4c9b795 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Thu, 13 Dec 2012 15:56:39 -0800 Subject: [PATCH] Allow larger amounts in normal notation. --- src/js/amount.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/amount.js b/src/js/amount.js index 07601724b1..526fd2827d 100644 --- a/src/js/amount.js +++ b/src/js/amount.js @@ -1127,7 +1127,7 @@ Amount.prototype.to_text = function (allow_nan) { { return "0"; } - else if (this._offset < -25 || this._offset > -5) + else if (this._offset < -25 || this._offset > -4) { // Use e notation. // XXX Clamp output.