aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-08-18 14:07:55 -0400
committerJesse Luehrs <doy@tozt.net>2019-08-18 14:07:55 -0400
commitaef8e74b849c7861dce63c0e2c1d0a8bdfa379fe (patch)
treee7f073a23258207c1037ced3d9398038a421b90a /src/main.rs
parent5d1f28420fe4ddef520a309dedaf98bd26694998 (diff)
downloadynab-api-aef8e74b849c7861dce63c0e2c1d0a8bdfa379fe.tar.gz
ynab-api-aef8e74b849c7861dce63c0e2c1d0a8bdfa379fe.zip
split out the full table view into a separate view
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
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);