Make WindowAttributes private (#2134)

* Make `WindowAttributes` private, and move its documentation

* Reorder WindowAttributes title and fullscreen to match method order
This commit is contained in:
Mads Marquart 2022-06-10 19:05:28 +02:00 committed by GitHub
parent eec84ade86
commit 44288f6280
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 74 additions and 98 deletions

View file

@ -638,7 +638,7 @@ impl Deref for Window {
}
impl Window {
pub fn new<T>(
pub(crate) fn new<T>(
event_loop: &EventLoopWindowTarget<T>,
attribs: WindowAttributes,
pl_attribs: PlatformSpecificWindowBuilderAttributes,