From 0d9c39029c1229135b15b01bd785673fff4de4b3 Mon Sep 17 00:00:00 2001 From: Sludge <96552222+SludgePhD@users.noreply.github.com> Date: Fri, 19 Aug 2022 23:32:40 +0200 Subject: [PATCH] Document `WindowEvent::Moved` as unsupported on Wayland --- src/event.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/event.rs b/src/event.rs index d54b1b6c..f52bcd8b 100644 --- a/src/event.rs +++ b/src/event.rs @@ -321,6 +321,10 @@ pub enum WindowEvent<'a> { Resized(PhysicalSize), /// The position of the window has changed. Contains the window's new position. + /// + /// ## Platform-specific + /// + /// - **Wayland:** Unsupported. Moved(PhysicalPosition), /// The window has been requested to close.