From 920dbc3f00fae8f4014bae135f3135d3f03ff969 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 10 Jun 2010 08:17:50 -0400 Subject: Corrected some math used by the budget command --- src/report.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/report.h') diff --git a/src/report.h b/src/report.h index f8fdf507..6b0333bd 100644 --- a/src/report.h +++ b/src/report.h @@ -411,19 +411,19 @@ public: OPTION__(report_t, budget_format_, CTOR(report_t, budget_format_) { on(none, "%(justify(scrub(get_at(total_expr, 0)), 12, -1, true, color))" - " %(justify(scrub(- get_at(total_expr, 1)), 12, " + " %(justify(-scrub(get_at(total_expr, 1)), 12, " " 12 + 1 + 12, true, color))" " %(justify(scrub(get_at(total_expr, 1) + " " get_at(total_expr, 0)), 12, " " 12 + 1 + 12 + 1 + 12, true, color))" " %(ansify_if(" " justify((get_at(total_expr, 1) ? " - " scrub((100% * get_at(total_expr, 0)) / " - " - get_at(total_expr, 1)) : 0), " + " (100% * scrub(get_at(total_expr, 0))) / " + " -scrub(get_at(total_expr, 1)) : 0), " " 5, -1, true, false)," " magenta if (color and get_at(total_expr, 1) and " - " (abs(quantity(get_at(total_expr, 0)) / " - " quantity(get_at(total_expr, 1))) >= 1))))" + " (abs(quantity(scrub(get_at(total_expr, 0))) / " + " quantity(scrub(get_at(total_expr, 1)))) >= 1))))" " %(!options.flat ? depth_spacer : \"\")" "%-(ansify_if(partial_account(options.flat), blue if color))\n" "%/%$1 %$2 %$3 %$4\n%/" -- cgit v1.2.3