From 21449a754cfbe2d503a2ccc2212d90f1bd2b97f1 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Tue, 4 Jan 2022 12:54:59 +0100 Subject: [PATCH] Reorder WindowAttributes title and fullscreen to match method order --- src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.rs b/src/window.rs index b8d647d0c36..2f8cbbf50c1 100644 --- a/src/window.rs +++ b/src/window.rs @@ -110,8 +110,8 @@ pub(crate) struct WindowAttributes { pub max_inner_size: Option, pub position: Option, pub resizable: bool, - pub fullscreen: Option, pub title: String, + pub fullscreen: Option, pub maximized: bool, pub visible: bool, pub transparent: bool,