From e3de94f50b82225aca1c9341e9ac69e626425f9f Mon Sep 17 00:00:00 2001 From: Tristan de Cacqueray Date: Sat, 13 Jun 2026 07:24:17 +0200 Subject: [PATCH] run cargo fmt This change fixes the CI. --- src/x11/window.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x11/window.rs b/src/x11/window.rs index 448e648e..cde17a6d 100644 --- a/src/x11/window.rs +++ b/src/x11/window.rs @@ -2,9 +2,9 @@ use std::cell::Cell; use std::error::Error; use std::ffi::c_void; use std::rc::Rc; +use std::sync::Arc; use std::sync::atomic::{AtomicBool, Ordering}; use std::sync::mpsc; -use std::sync::Arc; use std::thread::{self, JoinHandle}; use raw_window_handle::{ @@ -26,7 +26,7 @@ use crate::{ }; #[cfg(feature = "opengl")] -use crate::gl::{platform, GlContext}; +use crate::gl::{GlContext, platform}; use crate::x11::event_loop::EventLoop; use crate::x11::visual_info::WindowVisualConfig;