Skip to content

Commit

Permalink
fix np not printing info of multiple circles
Browse files Browse the repository at this point in the history
  • Loading branch information
tomara-x committed May 22, 2024
1 parent 9337268 commit 4595b90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ pub fn command_parser(
Some("np") => {
text.clear();
for e in access.selected_query.iter() {
if let Ok(e) = access.op_query.get(e) { *text = format!("> {}\n", e.0); }
if let Ok(e) = access.op_query.get(e) { *text += &format!("> {}\n", e.0); }
if let Ok(e) = access.net_query.get(e) { *text += &e.0.clone().display(); }
}
}
Expand Down

0 comments on commit 4595b90

Please sign in to comment.