Move balance divider right by prepend-width

This commit is contained in:
John Wiegley 2010-06-26 00:36:55 -04:00
parent 8a29c03490
commit bd5a136ad0

View file

@ -394,6 +394,7 @@ public:
" ansify_if(partial_account(options.flat), blue if color)," " ansify_if(partial_account(options.flat), blue if color),"
" bold if should_bold))\n%/" " bold if should_bold))\n%/"
"%$1\n%/" "%$1\n%/"
"%(prepend_width ? \" \" * prepend_width : \"\")"
"--------------------\n"); "--------------------\n");
}); });
@ -451,6 +452,7 @@ public:
" %(!options.flat ? depth_spacer : \"\")" " %(!options.flat ? depth_spacer : \"\")"
"%-(ansify_if(partial_account(options.flat), blue if color))\n" "%-(ansify_if(partial_account(options.flat), blue if color))\n"
"%/%$1 %$2 %$3 %$4\n%/" "%/%$1 %$2 %$3 %$4\n%/"
"%(prepend_width ? \" \" * prepend_width : \"\")"
"------------ ------------ ------------ -----\n"); "------------ ------------ ------------ -----\n");
}); });
@ -469,6 +471,7 @@ public:
" %(!options.flat ? depth_spacer : \"\")" " %(!options.flat ? depth_spacer : \"\")"
"%-(ansify_if(partial_account(options.flat), blue if color))\n%/" "%-(ansify_if(partial_account(options.flat), blue if color))\n%/"
"%$1 %$2 %$3\n%/" "%$1 %$2 %$3\n%/"
"%(prepend_width ? \" \" * prepend_width : \"\")"
"---------------- ---------------- ---------\n"); "---------------- ---------------- ---------\n");
}); });