summaryrefslogtreecommitdiff
path: root/src/report.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/report.h')
-rw-r--r--src/report.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/report.h b/src/report.h
index a711793d..ebaa3812 100644
--- a/src/report.h
+++ b/src/report.h
@@ -419,8 +419,8 @@ public:
CTOR(report_t, balance_format_) {
on(none,
"%(ansify_if("
- " justify(scrub(display_total), int(amount_width),"
- " int(amount_width) + int(prepend_width), true, color),"
+ " justify(scrub(display_total), max(int(amount_width),20),"
+ " max(int(amount_width),20) + int(prepend_width), true, color),"
" bold if should_bold))"
" %(!options.flat ? depth_spacer : \"\")"
"%-(ansify_if("
@@ -428,7 +428,7 @@ public:
" bold if should_bold))\n%/"
"%$1\n%/"
"%(prepend_width ? \" \" * int(prepend_width) : \"\")"
- "%(\"-\" * int(amount_width))\n");
+ "%(\"-\" * max(int(amount_width),20))\n");
});
OPTION(report_t, base);