Skip to content

Commit

Permalink
Merge pull request #503 from lyskouski/BF-496
Browse files Browse the repository at this point in the history
[#496] [BF] Widescreen Navigation. Fix int-to-double error
  • Loading branch information
lyskouski authored Oct 7, 2024
2 parents aaaa036 + 93d1e59 commit b8ad6e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pages/budget/budget_view_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class BudgetViewPageState extends AbstractPageState<BudgetViewPage> with TickerP
}
iteration++;
curr = DateTime(now.year, now.month - iteration, 1);
summary.details = 0;
summary.details = 0.0;
summary.color = null;
summary.title = DateFormat.MMMM().format(curr);
summary.description = curr.year.toString();
Expand Down

0 comments on commit b8ad6e7

Please sign in to comment.