remove brackets from contrast

This commit is contained in:
Peter Bartyik 2020-07-13 16:20:15 +02:00 committed by Ferran Basora
parent a148670fb5
commit 41e41cd10b

View File

@ -89,7 +89,7 @@ impl<'a> View<'a> {
let clean = line.trim_end_matches(|c: char| c.is_whitespace());
if !clean.is_empty() {
let text = self.make_hint_text(line);
let text = line.to_string();
print!("{goto}{text}", goto = cursor::Goto(1, index as u16 + 1), text = &text);
}