aboutsummaryrefslogtreecommitdiffstats
path: root/src/views/util.rs
blob: af2805f55d934380cab3a094eaaf9b885c329bee (plain) (blame)
1
2
3
4
5
6
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))
}