From aef8e74b849c7861dce63c0e2c1d0a8bdfa379fe Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 18 Aug 2019 14:07:55 -0400 Subject: split out the full table view into a separate view --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 8a380e2..f7ce70f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -27,7 +27,7 @@ fn main() { "=".repeat(term_width), ))); - layout.add_child(views::txn_tables(&budget)); + layout.add_child(views::TxnTables::new("txn_tables", &budget)); app.set_user_data(budget); app.add_fullscreen_layer(layout); -- cgit v1.2.3-54-g00ecf