mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
tinywl: drop focused surface check for interactive ops
This serves as a bad example: compositors should validate serials from events instead. Also, the current implementation segfaults if focused_surface is NULL.
This commit is contained in:
parent
7debaced03
commit
c752270be7
1 changed files with 1 additions and 7 deletions
|
|
@ -712,13 +712,7 @@ static void begin_interactive(struct tinywl_toplevel *toplevel,
|
|||
* compositor stops propegating pointer events to clients and instead
|
||||
* consumes them itself, to move or resize windows. */
|
||||
struct tinywl_server *server = toplevel->server;
|
||||
struct wlr_surface *focused_surface =
|
||||
server->seat->pointer_state.focused_surface;
|
||||
if (toplevel->xdg_toplevel->base->surface !=
|
||||
wlr_surface_get_root_surface(focused_surface)) {
|
||||
/* Deny move/resize requests from unfocused clients. */
|
||||
return;
|
||||
}
|
||||
|
||||
server->grabbed_toplevel = toplevel;
|
||||
server->cursor_mode = mode;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue