Remove feature description in FEATURES.md (#3479)
It easily becomes out of date.
This commit is contained in:
parent
4d2a0dd2b3
commit
35379f305a
5 changed files with 40 additions and 220 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue