Introduce WindowBuilderExt::with_app_id for wayland (#700)

This commit is contained in:
Victor Berger 2018-11-15 22:59:56 +01:00 committed by Francesca Plebani
parent 8dcd514393
commit 7fe90e6c80
4 changed files with 22 additions and 3 deletions

View file

@ -46,6 +46,7 @@ pub struct PlatformSpecificWindowBuilderAttributes {
pub override_redirect: bool,
pub x11_window_type: x11::util::WindowType,
pub gtk_theme_variant: Option<String>,
pub app_id: Option<String>
}
lazy_static!(
@ -128,7 +129,7 @@ impl Window {
) -> Result<Self, CreationError> {
match *events_loop {
EventsLoop::Wayland(ref events_loop) => {
wayland::Window::new(events_loop, attribs).map(Window::Wayland)
wayland::Window::new(events_loop, attribs, pl_attribs).map(Window::Wayland)
},
EventsLoop::X(ref events_loop) => {
x11::Window::new(events_loop, attribs, pl_attribs).map(Window::X)