summaryrefslogtreecommitdiff
path: root/src/ui.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2023-10-21 10:23:44 +0200
committerSanto Cariotti <santo@dcariotti.me>2023-10-21 10:23:44 +0200
commit27a1fdbe4eefef66531ae0f4243c4baea2903f42 (patch)
tree8c54af16517c6399d3d052b62d1f61df1783c678 /src/ui.rs
parent10f48592388c78f93487ea96bcc9ad40c4864584 (diff)
Add structure to monitor arg:value for a register
Diffstat (limited to 'src/ui.rs')
-rw-r--r--src/ui.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ui.rs b/src/ui.rs
index f846349..92e2a04 100644
--- a/src/ui.rs
+++ b/src/ui.rs
@@ -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()