aboutsummaryrefslogtreecommitdiff
path: root/src/tui.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tui.rs')
-rw-r--r--src/tui.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tui.rs b/src/tui.rs
index 7b8b81f..a14a0ab 100644
--- a/src/tui.rs
+++ b/src/tui.rs
@@ -198,7 +198,8 @@ impl Tui {
pub fn draw(&mut self, app: &mut App) -> Result<()> {
// self.terminal.draw(|frame| ui::render(app, frame))?;
self.terminal
- .draw(|frame| frame.render_widget(app, frame.area()))?;
+ // .draw(|frame| frame.render_widget(app, frame.area()))?;
+ .draw(|frame| ui::render_ui(app, frame))?;
Ok(())
}