diff options
Diffstat (limited to 'helix-term/src/compositor.rs')
-rw-r--r-- | helix-term/src/compositor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/compositor.rs b/helix-term/src/compositor.rs index 4570cab9..7b828358 100644 --- a/helix-term/src/compositor.rs +++ b/helix-term/src/compositor.rs @@ -67,7 +67,7 @@ pub trait Component: Any + AnyComponent { use anyhow::Error; use std::io::stdout; use tui::backend::CrosstermBackend; -type Terminal = crate::terminal::Terminal<CrosstermBackend<std::io::Stdout>>; +type Terminal = tui::terminal::Terminal<CrosstermBackend<std::io::Stdout>>; pub struct Compositor { layers: Vec<Box<dyn Component>>, |