aboutsummaryrefslogtreecommitdiffstats
path: root/src/views/util.rs
blob: eb2297687a4734ffd8b2b55ac70c838e348d8e70 (plain) (blame)
1
2
3
4
5
pub type FullView<T> = cursive::views::IdView<cursive::views::OnEventView<T>>;

pub fn dialog(s: &str) -> impl cursive::view::View {
    cursive::views::Panel::new(cursive::views::Dialog::info(s))
}