diff options
author | Santo Cariotti <santo@dcariotti.me> | 2023-10-21 10:23:44 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2023-10-21 10:23:44 +0200 |
commit | 27a1fdbe4eefef66531ae0f4243c4baea2903f42 (patch) | |
tree | 8c54af16517c6399d3d052b62d1f61df1783c678 /src/ui.rs | |
parent | 10f48592388c78f93487ea96bcc9ad40c4864584 (diff) |
Add structure to monitor arg:value for a register
Diffstat (limited to 'src/ui.rs')
-rw-r--r-- | src/ui.rs | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -34,8 +34,11 @@ impl UI { self.max_lines = self.lines.len() + 1; } - pub fn get_paragraph(&self, pid: Pid) -> Paragraph { - let lines: Vec<Line> = self.lines.iter().map(|x| x.output_ui(pid)).collect(); + pub fn get_paragraph(&mut self, pid: Pid) -> Paragraph { + let mut lines: Vec<Line> = vec![]; + for line in &mut self.lines { + lines.push(line.output_ui(pid)); + } let paragraph = Paragraph::new(lines) .block( Block::default() |