Remove feature description in FEATURES.md (#3479)

It easily becomes out of date.
This commit is contained in:
Mads Marquart 2024-12-03 21:24:57 +01:00 committed by GitHub
parent 4d2a0dd2b3
commit 35379f305a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 40 additions and 220 deletions

View file

@ -909,7 +909,7 @@ pub trait Window: AsAny + Send + Sync {
/// - **Web / iOS / Android:** Unsupported. Always returns [`WindowButtons::all`].
fn enabled_buttons(&self) -> WindowButtons;
/// Sets the window to minimized or back
/// Minimize the window, or put it back from the minimized state.
///
/// ## Platform-specific
///
@ -945,7 +945,7 @@ pub trait Window: AsAny + Send + Sync {
/// - **iOS / Android / Web:** Unsupported.
fn is_maximized(&self) -> bool;
/// Sets the window to fullscreen or back.
/// Set the window's fullscreen state.
///
/// ## Platform-specific
///
@ -1433,6 +1433,9 @@ impl From<ResizeDirection> for CursorIcon {
/// Fullscreen modes.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub enum Fullscreen {
/// This changes the video mode of the monitor for fullscreen windows and,
/// if applicable, captures the monitor for exclusive use by this
/// application.
Exclusive(VideoModeHandle),
/// Providing `None` to `Borderless` will fullscreen on the current monitor.