Use self:: when re-importing local module (#3757)

Follow-up to https://github.com/rust-windowing/winit/pull/3755.
This commit is contained in:
Mads Marquart 2024-06-24 22:40:49 +02:00 committed by GitHub
parent 9d5412ffe1
commit 8bdd4d620e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View file

@ -41,10 +41,10 @@ pub use self::monitor::{MonitorHandle, VideoModeHandle};
pub use self::window::{PlatformSpecificWindowAttributes, Window, WindowId};
pub(crate) use self::keyboard::KeyEventExtra;
use self::web_sys as backend;
pub(crate) use crate::icon::NoIcon as PlatformIcon;
pub(crate) use crate::platform_impl::Fullscreen;
pub(crate) use cursor::{
CustomCursor as PlatformCustomCursor, CustomCursorFuture,
CustomCursorSource as PlatformCustomCursorSource,
};
use web_sys as backend;