Stop loading a mono font just for the debug view

This commit is contained in:
Héctor Ramón Jiménez 2019-11-26 15:33:38 +01:00
parent a99aa1dd61
commit 80a8a57471
2 changed files with 4 additions and 16 deletions

View file

@ -146,7 +146,7 @@ impl Debug {
let mut lines = Vec::new();
fn key_value<T: std::fmt::Debug>(key: &str, value: T) -> String {
format!("{: <30} {:?}", key, value)
format!("{} {:?}", key, value)
}
lines.push(format!(