From aba8e814818ea0ed9ae456f46e76d6dfb2860a20 Mon Sep 17 00:00:00 2001 From: James Liu Date: Mon, 27 Feb 2023 21:10:52 +0000 Subject: [PATCH] Remove mention of Windows 11 from Window::transparent's docs (#7832) # Objective Fix #7544. Update docs for `Window::transparent` regarding Windows 11 platform support. Following the update to winit 0.28, this has been fixed. ## Solution Remove the mention in the docs. --- crates/bevy_window/src/window.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/bevy_window/src/window.rs b/crates/bevy_window/src/window.rs index 28d9527267..51f5562635 100644 --- a/crates/bevy_window/src/window.rs +++ b/crates/bevy_window/src/window.rs @@ -130,9 +130,7 @@ pub struct Window { /// ## Platform-specific /// - iOS / Android / Web: Unsupported. /// - macOS X: Not working as expected. - /// - Windows 11: Not working as expected /// macOS X transparent works with winit out of the box, so this issue might be related to: - /// Windows 11 is related to pub transparent: bool, /// Should the window start focused? pub focused: bool,