diff options
author | 2019-11-26 15:33:38 +0100 | |
---|---|---|
committer | 2019-11-26 15:33:38 +0100 | |
commit | 80a8a574712f1652c7311554ad358c5bc15d5515 (patch) | |
tree | 4858ad7a2f5566c1f9f54c9a9c57ec01cf45fb32 /winit/src/debug/basic.rs | |
parent | a99aa1dd61e15e28d93c0719037b6683f32e310e (diff) | |
download | iced-80a8a574712f1652c7311554ad358c5bc15d5515.tar.gz iced-80a8a574712f1652c7311554ad358c5bc15d5515.tar.bz2 iced-80a8a574712f1652c7311554ad358c5bc15d5515.zip |
Stop loading a mono font just for the debug view
Diffstat (limited to 'winit/src/debug/basic.rs')
-rw-r--r-- | winit/src/debug/basic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winit/src/debug/basic.rs b/winit/src/debug/basic.rs index 67c6d8a2..c9da392c 100644 --- a/winit/src/debug/basic.rs +++ b/winit/src/debug/basic.rs @@ -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!( |