From 9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 21 Feb 2025 01:22:56 +0100 Subject: Run `cargo fmt` --- winit/src/program.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'winit/src/program.rs') diff --git a/winit/src/program.rs b/winit/src/program.rs index 9a64fa51..c57c0b1b 100644 --- a/winit/src/program.rs +++ b/winit/src/program.rs @@ -20,9 +20,9 @@ use crate::futures::futures::{Future, StreamExt}; use crate::futures::subscription::{self, Subscription}; use crate::futures::{Executor, Runtime}; use crate::graphics; -use crate::graphics::{compositor, Compositor}; -use crate::runtime::user_interface::{self, UserInterface}; +use crate::graphics::{Compositor, compositor}; use crate::runtime::Debug; +use crate::runtime::user_interface::{self, UserInterface}; use crate::runtime::{self, Action, Task}; use crate::{Clipboard, Error, Proxy, Settings}; @@ -406,7 +406,9 @@ where .with_canvas(self.canvas.take()) }; - log::info!("Window attributes for id `{id:#?}`: {window_attributes:#?}"); + log::info!( + "Window attributes for id `{id:#?}`: {window_attributes:#?}" + ); // On macOS, the `position` in `WindowAttributes` represents the "inner" // position of the window; while on other platforms it's the "outer" position. -- cgit