wayland: Protocol change: wl_shell_surface_* take surfaces for parents
These functions used to take shell_surface objects and now take surface objects the parents.
This commit is contained in:
@ -643,10 +643,10 @@ gdk_wayland_window_map (GdkWindow *window)
|
|||||||
*/
|
*/
|
||||||
wl_shell_surface_set_popup (impl->shell_surface,
|
wl_shell_surface_set_popup (impl->shell_surface,
|
||||||
parent->grab_input_seat, parent->grab_time,
|
parent->grab_input_seat, parent->grab_time,
|
||||||
parent->shell_surface,
|
parent->surface,
|
||||||
window->x, window->y, 0);
|
window->x, window->y, 0);
|
||||||
} else {
|
} else {
|
||||||
wl_shell_surface_set_transient (impl->shell_surface, parent->shell_surface,
|
wl_shell_surface_set_transient (impl->shell_surface, parent->surface,
|
||||||
window->x, window->y, 0);
|
window->x, window->y, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user