aboutsummaryrefslogtreecommitdiffstats
path: root/src/views/util.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-02-26 23:39:49 -0500
committerJesse Luehrs <doy@tozt.net>2021-02-26 23:39:49 -0500
commitce84b8e78f260f61c47486a32e7455d815a915fc (patch)
tree0976a5c6483420c2a527345a265cb0bd9ce7dcb2 /src/views/util.rs
parentcae11f7d94b7da0e2a941349af94dffa5a8ab298 (diff)
downloadynab-reimbursements-master.tar.gz
ynab-reimbursements-master.zip
update depsHEADmaster
Diffstat (limited to 'src/views/util.rs')
-rw-r--r--src/views/util.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/views/util.rs b/src/views/util.rs
index eb22976..af2805f 100644
--- a/src/views/util.rs
+++ b/src/views/util.rs
@@ -1,4 +1,5 @@
-pub type FullView<T> = cursive::views::IdView<cursive::views::OnEventView<T>>;
+pub type FullView<T> =
+ cursive::views::NamedView<cursive::views::OnEventView<T>>;
pub fn dialog(s: &str) -> impl cursive::view::View {
cursive::views::Panel::new(cursive::views::Dialog::info(s))