mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
xwayland: use initializer for struct wlr_xwayland_resize_event
Ensures there are no fields with uninitialized memory. Also remove an outdated TODO: Xwayland only supports a single seat.
This commit is contained in:
parent
5bb0057794
commit
76e2a74282
1 changed files with 5 additions and 7 deletions
|
@ -1240,10 +1240,6 @@ static void xwm_handle_net_wm_moveresize_message(struct wlr_xwm *xwm,
|
|||
return;
|
||||
}
|
||||
|
||||
// TODO: we should probably add input or seat info to this but we would just
|
||||
// be guessing
|
||||
struct wlr_xwayland_resize_event resize_event;
|
||||
|
||||
int detail = ev->data.data32[2];
|
||||
switch (detail) {
|
||||
case _NET_WM_MOVERESIZE_MOVE:
|
||||
|
@ -1256,9 +1252,11 @@ static void xwm_handle_net_wm_moveresize_message(struct wlr_xwm *xwm,
|
|||
case _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT:
|
||||
case _NET_WM_MOVERESIZE_SIZE_BOTTOM:
|
||||
case _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT:
|
||||
case _NET_WM_MOVERESIZE_SIZE_LEFT:
|
||||
resize_event.surface = xsurface;
|
||||
resize_event.edges = net_wm_edges_to_wlr(detail);
|
||||
case _NET_WM_MOVERESIZE_SIZE_LEFT:;
|
||||
struct wlr_xwayland_resize_event resize_event = {
|
||||
.surface = xsurface,
|
||||
.edges = net_wm_edges_to_wlr(detail),
|
||||
};
|
||||
wl_signal_emit_mutable(&xsurface->events.request_resize, &resize_event);
|
||||
break;
|
||||
case _NET_WM_MOVERESIZE_CANCEL:
|
||||
|
|
Loading…
Reference in a new issue