Skip to content

Commit

Permalink
change layout size of interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Chleba committed Dec 11, 2023
1 parent 5405765 commit e5ef45c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/interfaces.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl Component for Interfaces {
}

fn draw(&mut self, f: &mut Frame<'_>, area: Rect) -> Result<()> {
let rect = Rect::new(area.width / 2, 1, area.width / 2, area.height / 4);
let rect = Rect::new(area.width / 2, 1, area.width / 2, area.height / 2);
let block = self.make_table();
f.render_widget(block, rect);

Expand Down

0 comments on commit e5ef45c

Please sign in to comment.