mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-25 06:41:31 +11:00
FIxed obsolete strings
This commit is contained in:
parent
5645941a14
commit
f034017ab2
|
@ -319,7 +319,7 @@ pub enum MouseCursor {
|
||||||
RowResize,
|
RowResize,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Describes how glutin handles the cursor.
|
/// Describes how winit handles the cursor.
|
||||||
#[derive(Debug, Copy, Clone, PartialEq)]
|
#[derive(Debug, Copy, Clone, PartialEq)]
|
||||||
pub enum CursorState {
|
pub enum CursorState {
|
||||||
/// Normal cursor behavior.
|
/// Normal cursor behavior.
|
||||||
|
@ -362,7 +362,7 @@ pub struct WindowAttributes {
|
||||||
|
|
||||||
/// The title of the window in the title bar.
|
/// The title of the window in the title bar.
|
||||||
///
|
///
|
||||||
/// The default is `"glutin window"`.
|
/// The default is `"winit window"`.
|
||||||
pub title: String,
|
pub title: String,
|
||||||
|
|
||||||
/// Whether the window should be immediately visible upon creation.
|
/// Whether the window should be immediately visible upon creation.
|
||||||
|
@ -394,7 +394,7 @@ impl Default for WindowAttributes {
|
||||||
min_dimensions: None,
|
min_dimensions: None,
|
||||||
max_dimensions: None,
|
max_dimensions: None,
|
||||||
monitor: None,
|
monitor: None,
|
||||||
title: "glutin window".to_owned(),
|
title: "winit window".to_owned(),
|
||||||
visible: true,
|
visible: true,
|
||||||
transparent: false,
|
transparent: false,
|
||||||
decorations: true,
|
decorations: true,
|
||||||
|
|
Loading…
Reference in a new issue