diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-10-20 11:20:52 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-10-20 11:20:52 +0200 |
commit | fbe9d908ff190dd91b2f4cc6fa713a0cb2f6a419 (patch) | |
tree | 535a127c7b0d0ac86cc42073a140a923fa9ecd04 /src/ui.rs | |
parent | 5c3c5033b36986641603253400e86850dc60c5e2 (diff) |
Dump crossterm and rataui newest versions
Diffstat (limited to 'src/ui.rs')
-rw-r--r-- | src/ui.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); })?; |