diff options
author | 2019-12-01 03:33:24 +0100 | |
---|---|---|
committer | 2019-12-01 03:33:24 +0100 | |
commit | 25ed33329b36027d98a0ab0007e7b78b4402a505 (patch) | |
tree | 0e3453903ab55fcd7fbad8447079d58b6dc4441f /winit | |
parent | e404f5098a4e053f52e75175b6cd677e60d27517 (diff) | |
parent | 80a8a574712f1652c7311554ad358c5bc15d5515 (diff) | |
download | iced-25ed33329b36027d98a0ab0007e7b78b4402a505.tar.gz iced-25ed33329b36027d98a0ab0007e7b78b4402a505.tar.bz2 iced-25ed33329b36027d98a0ab0007e7b78b4402a505.zip |
Merge pull request #74 from hecrj/fix/font-load-panic
Fallback to embedded font when system font is unsupported
Diffstat (limited to '')
-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!( |