Skip to content

Commit 5c818c7

Browse files
committed
wip
1 parent 4075035 commit 5c818c7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/platform/win/window.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ use windows_sys::Win32::{
1313
},
1414
};
1515

16+
use crate::warn;
1617
use dpi::{PhysicalPosition, PhysicalSize, Size};
1718
use std::cell::Cell;
1819
use std::num::NonZeroUsize;
19-
use tracing::warn;
2020

2121
pub(crate) const BV_WINDOW_MUST_CLOSE: u32 = WM_USER + 1;
2222

src/platform/win/window_state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use crate::platform::win::keyboard::KeyboardState;
22
use crate::platform::PlatformHandle;
3+
use crate::warn;
34
use crate::wrappers::win32::cursor::SystemCursor;
45
use crate::wrappers::win32::h_instance::HInstance;
56
use crate::wrappers::win32::window::HWnd;
@@ -9,7 +10,6 @@ use dpi::{PhysicalSize, Size};
910
use raw_window_handle::{DisplayHandle, Win32WindowHandle};
1011
use std::cell::{Cell, OnceCell, Ref, RefCell};
1112
use std::num::NonZeroIsize;
12-
use tracing::warn;
1313
use windows_sys::Win32::UI::WindowsAndMessaging::PostMessageW;
1414

1515
/// All data associated with the window.

0 commit comments

Comments
 (0)