From 7846e6a31e7f281aeefc8f88a94eaaa4ee3140ee Mon Sep 17 00:00:00 2001 From: Chris Copeland Date: Mon, 28 Feb 2022 00:19:16 -0800 Subject: [PATCH] Update `Window::is_maximized` doc about X11/Wayland The support for `Window::is_maximized` on X11/Wayland was added in c916eb6, however the doc comment on the method was stating that it's not supported. --- src/platform_impl/linux/wayland/window/mod.rs | 4 ++-- src/window.rs | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/platform_impl/linux/wayland/window/mod.rs b/src/platform_impl/linux/wayland/window/mod.rs index 3dc8bc58..54b03b2b 100644 --- a/src/platform_impl/linux/wayland/window/mod.rs +++ b/src/platform_impl/linux/wayland/window/mod.rs @@ -87,7 +87,7 @@ impl Window { let window_id = super::make_wid(&surface); let maximized = Arc::new(AtomicBool::new(false)); - let maximzied_clone = maximized.clone(); + let maximized_clone = maximized.clone(); let fullscreen = Arc::new(AtomicBool::new(false)); let fullscreen_clone = fullscreen.clone(); @@ -115,7 +115,7 @@ impl Window { } Event::Configure { new_size, states } => { let is_maximized = states.contains(&State::Maximized); - maximzied_clone.store(is_maximized, Ordering::Relaxed); + maximized_clone.store(is_maximized, Ordering::Relaxed); let is_fullscreen = states.contains(&State::Fullscreen); fullscreen_clone.store(is_fullscreen, Ordering::Relaxed); diff --git a/src/window.rs b/src/window.rs index d330e79a..002660e3 100644 --- a/src/window.rs +++ b/src/window.rs @@ -718,7 +718,6 @@ impl Window { /// /// ## Platform-specific /// - /// - **Wayland / X11:** Not implemented. /// - **iOS / Android / Web:** Unsupported. #[inline] pub fn is_maximized(&self) -> bool {