diff options
author | John Wiegley <johnw@newartisans.com> | 2019-07-05 13:31:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-05 13:31:18 -0700 |
commit | 2ac86f5dfeda2cb5fd8d948cc4a75a2ce2d45025 (patch) | |
tree | 590fd3181804d0380aee174e005eb89dba8fe1fd /src/report.h | |
parent | c4eab0007a788703bc63db82fd995ef646820529 (diff) | |
parent | bb78c6e059a191814dcea1a31f97d40208248b97 (diff) | |
download | fork-ledger-2ac86f5dfeda2cb5fd8d948cc4a75a2ce2d45025.tar.gz fork-ledger-2ac86f5dfeda2cb5fd8d948cc4a75a2ce2d45025.tar.bz2 fork-ledger-2ac86f5dfeda2cb5fd8d948cc4a75a2ce2d45025.zip |
Change --invert to invert displayed amounts and totals, not amo… (#1804)
Change --invert to invert displayed amounts and totals, not amounts
Diffstat (limited to 'src/report.h')
-rw-r--r-- | src/report.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/report.h b/src/report.h index 1bda0407..7775e21d 100644 --- a/src/report.h +++ b/src/report.h @@ -732,7 +732,8 @@ public: OPTION(report_t, inject_); OPTION_(report_t, invert, DO() { - OTHER(amount_).on(whence, "-amount_expr"); + OTHER(display_amount_).on(whence, "-display_amount"); + OTHER(display_total_).on(whence, "-display_total"); }); OPTION_ |