diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-26 00:36:55 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-26 00:36:55 -0400 |
commit | bd5a136ad06559a15c5e9f65c65d425b22d2bdab (patch) | |
tree | 644901f1dbb4c2483a86f27753c50c753338e151 | |
parent | 8a29c03490d780ab3a23f552c15f2314a43f8a78 (diff) | |
download | fork-ledger-bd5a136ad06559a15c5e9f65c65d425b22d2bdab.tar.gz fork-ledger-bd5a136ad06559a15c5e9f65c65d425b22d2bdab.tar.bz2 fork-ledger-bd5a136ad06559a15c5e9f65c65d425b22d2bdab.zip |
Move balance divider right by prepend-width
-rw-r--r-- | src/report.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/report.h b/src/report.h index 10138551..5c172ee9 100644 --- a/src/report.h +++ b/src/report.h @@ -394,6 +394,7 @@ public: " ansify_if(partial_account(options.flat), blue if color)," " bold if should_bold))\n%/" "%$1\n%/" + "%(prepend_width ? \" \" * prepend_width : \"\")" "--------------------\n"); }); @@ -451,6 +452,7 @@ public: " %(!options.flat ? depth_spacer : \"\")" "%-(ansify_if(partial_account(options.flat), blue if color))\n" "%/%$1 %$2 %$3 %$4\n%/" + "%(prepend_width ? \" \" * prepend_width : \"\")" "------------ ------------ ------------ -----\n"); }); @@ -469,6 +471,7 @@ public: " %(!options.flat ? depth_spacer : \"\")" "%-(ansify_if(partial_account(options.flat), blue if color))\n%/" "%$1 %$2 %$3\n%/" + "%(prepend_width ? \" \" * prepend_width : \"\")" "---------------- ---------------- ---------\n"); }); |