mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
chase wlroots: wlr_xdg_surface_get_geometry remove MR 4788
Ref: 5c98d1a04a1439bf40c6e516086cfaff2d67f135
("xdg-surface: fix window geometry handling")
This commit is contained in:
parent
261126fcd0
commit
1dc4e7ed28
4 changed files with 9 additions and 15 deletions
|
|
@ -463,10 +463,9 @@ process_cursor_motion_out_of_surface(struct server *server,
|
|||
ly = view->current.y;
|
||||
/* Take into account invisible xdg-shell CSD borders */
|
||||
if (view->type == LAB_XDG_SHELL_VIEW) {
|
||||
struct wlr_box geo;
|
||||
wlr_xdg_surface_get_geometry(xdg_surface_from_view(view), &geo);
|
||||
lx -= geo.x;
|
||||
ly -= geo.y;
|
||||
struct wlr_xdg_surface *xdg_surface = xdg_surface_from_view(view);
|
||||
lx -= xdg_surface->geometry.x;
|
||||
ly -= xdg_surface->geometry.y;
|
||||
}
|
||||
} else if (node && wlr_layer_surface_v1_try_from_wlr_surface(surface)) {
|
||||
wlr_scene_node_coords(node, &lx, &ly);
|
||||
|
|
|
|||
|
|
@ -230,10 +230,8 @@ update_popup_position(struct input_method_popup *popup)
|
|||
|
||||
if (xdg_surface) {
|
||||
/* Take into account invisible xdg-shell CSD borders */
|
||||
struct wlr_box geo;
|
||||
wlr_xdg_surface_get_geometry(xdg_surface, &geo);
|
||||
cursor_rect.x -= geo.x;
|
||||
cursor_rect.y -= geo.y;
|
||||
cursor_rect.x -= xdg_surface->geometry.x;
|
||||
cursor_rect.y -= xdg_surface->geometry.y;
|
||||
}
|
||||
} else {
|
||||
cursor_rect = (struct wlr_box){0};
|
||||
|
|
|
|||
|
|
@ -149,8 +149,7 @@ handle_commit(struct wl_listener *listener, void *data)
|
|||
return;
|
||||
}
|
||||
|
||||
struct wlr_box size;
|
||||
wlr_xdg_surface_get_geometry(xdg_surface, &size);
|
||||
struct wlr_box size = xdg_surface->geometry;
|
||||
bool update_required = false;
|
||||
|
||||
/*
|
||||
|
|
@ -727,10 +726,8 @@ xdg_toplevel_view_map(struct view *view)
|
|||
* dimensions remain zero until handle_commit().
|
||||
*/
|
||||
if (wlr_box_empty(&view->pending)) {
|
||||
struct wlr_box size;
|
||||
wlr_xdg_surface_get_geometry(xdg_surface, &size);
|
||||
view->pending.width = size.width;
|
||||
view->pending.height = size.height;
|
||||
view->pending.width = xdg_surface->geometry.width;
|
||||
view->pending.height = xdg_surface->geometry.height;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[wrap-git]
|
||||
url = https://gitlab.freedesktop.org/wlroots/wlroots.git
|
||||
revision = 1133bc15ceb2c2bcb6df692acda6bfa39a292ab5
|
||||
revision = 5c98d1a04a1439bf40c6e516086cfaff2d67f135
|
||||
|
||||
[provide]
|
||||
dependency_names = wlroots-0.19
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue