Skip to content

Commit

Permalink
Correct the unicode codes used for tree printing
Browse files Browse the repository at this point in the history
These were converted from inline UTF-8 to escape sequences, but the
sequences should be in hexadecimal instead of decimal.
  • Loading branch information
mrobinson committed Oct 11, 2016
1 parent cad5a4e commit b0b7068
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions components/gfx_traits/print_tree.rs
Expand Up @@ -15,7 +15,7 @@ pub struct PrintTree {

impl PrintTree {
pub fn new(title: String) -> PrintTree {
println!("\u{9484} {}", title);
println!("\u{250c} {}", title);
PrintTree {
level: 1,
queued_item: None,
Expand All @@ -24,29 +24,29 @@ impl PrintTree {

/// Descend one level in the tree with the given title.
pub fn new_level(&mut self, title: String) {
self.flush_queued_item("\u{9500}\u{9472}");
self.flush_queued_item("\u{251C}\u{2500}");

self.print_level_prefix();
println!("\u{9500}\u{9472} {}", title);
println!("\u{251C}\u{2500} {}", title);

self.level = self.level + 1;
}

/// Ascend one level in the tree.
pub fn end_level(&mut self) {
self.flush_queued_item("\u{9492}\u{9472}");
self.flush_queued_item("\u{2514}\u{2500}");
self.level = self.level - 1;
}

/// Add an item to the current level in the tree.
pub fn add_item(&mut self, text: String) {
self.flush_queued_item("\u{9500}\u{9472}");
self.flush_queued_item("\u{251C}\u{2500}");
self.queued_item = Some(text);
}

fn print_level_prefix(&self) {
for _ in 0..self.level {
print!("\u{9474} ");
print!("\u{2502} ");
}
}

Expand Down

0 comments on commit b0b7068

Please sign in to comment.