commit
836e53e55a
11 changed files with 910 additions and 2 deletions
|
|
@ -42,7 +42,7 @@ extern crate gdi32;
|
|||
extern crate user32;
|
||||
#[cfg(target_os = "windows")]
|
||||
extern crate dwmapi;
|
||||
#[cfg(target_os = "macos")]
|
||||
#[cfg(any(target_os = "macos", target_os = "ios"))]
|
||||
#[macro_use]
|
||||
extern crate objc;
|
||||
#[cfg(target_os = "macos")]
|
||||
|
|
@ -345,6 +345,7 @@ pub struct BuilderAttribs<'a> {
|
|||
srgb: Option<bool>,
|
||||
transparent: bool,
|
||||
decorations: bool,
|
||||
multitouch: bool
|
||||
}
|
||||
|
||||
impl BuilderAttribs<'static> {
|
||||
|
|
@ -371,6 +372,7 @@ impl BuilderAttribs<'static> {
|
|||
srgb: None,
|
||||
transparent: false,
|
||||
decorations: true,
|
||||
multitouch: false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -402,6 +404,7 @@ impl<'a> BuilderAttribs<'a> {
|
|||
srgb: self.srgb,
|
||||
transparent: self.transparent,
|
||||
decorations: self.decorations,
|
||||
multitouch: self.multitouch
|
||||
};
|
||||
|
||||
(new_attribs, sharing)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue