summaryrefslogtreecommitdiff
path: root/src/ui.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-10-20 11:20:52 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-10-20 11:20:52 +0200
commitfbe9d908ff190dd91b2f4cc6fa713a0cb2f6a419 (patch)
tree535a127c7b0d0ac86cc42073a140a923fa9ecd04 /src/ui.rs
parent5c3c5033b36986641603253400e86850dc60c5e2 (diff)
Dump crossterm and rataui newest versions
Diffstat (limited to 'src/ui.rs')
-rw-r--r--src/ui.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui.rs b/src/ui.rs
index 92e2a04..b8f047c 100644
--- a/src/ui.rs
+++ b/src/ui.rs
@@ -98,9 +98,9 @@ impl UI {
}
}
- self.height = terminal.get_frame().size().height as usize;
+ self.height = terminal.get_frame().area().height as usize;
terminal.draw(|frame| {
- let size = frame.size();
+ let size = frame.area();
frame.render_widget(self.get_paragraph(pid), size);
})?;