diff options
author | 2019-12-04 04:01:12 +0100 | |
---|---|---|
committer | 2019-12-04 04:01:12 +0100 | |
commit | 561c3641c6ac62333550c3017561fa7a18663f00 (patch) | |
tree | 3e0a502ab8e37679899002e4664a148fc474a087 /winit/src/debug | |
parent | 4293dcb2540144cc69a9f1370103bb780eca69f3 (diff) | |
parent | 6c145bbb239e87569bf4aa797ea7f8d34e25cf62 (diff) | |
download | iced-561c3641c6ac62333550c3017561fa7a18663f00.tar.gz iced-561c3641c6ac62333550c3017561fa7a18663f00.tar.bz2 iced-561c3641c6ac62333550c3017561fa7a18663f00.zip |
Merge branch 'master' into feature/image-from-bytes
Diffstat (limited to 'winit/src/debug')
-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!( |