summaryrefslogtreecommitdiff
path: root/zeitgeist.go
diff options
context:
space:
mode:
Diffstat (limited to 'zeitgeist.go')
-rw-r--r--zeitgeist.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/zeitgeist.go b/zeitgeist.go
index 762b0af..abcbe52 100644
--- a/zeitgeist.go
+++ b/zeitgeist.go
@@ -796,7 +796,7 @@ type Totals struct {
func (t *Totals) Unaccounted() Amount {
d := t.Budgeted - t.Planned
// TODO: rounding OK!?
- if d < 4 {
+ if d < 0.01 {
return 0
}
return d