aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/wm/xdg.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-04 11:33:07 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-04 11:33:07 -0700
commit93e9672953d849288f27ff3d977cc1c1ff111da8 (patch)
tree64c431f8bf6d4e842da6bcd76a259434045197e0 /sys/cmd/wm/xdg.c
parent8f224149f176fb8de90a82b44f4dd1c6a1b89a4f (diff)
feat(wm): keyboard focus corrected
Diffstat (limited to 'sys/cmd/wm/xdg.c')
-rw-r--r--sys/cmd/wm/xdg.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/cmd/wm/xdg.c b/sys/cmd/wm/xdg.c
index 1d5ae68..6a0c2c8 100644
--- a/sys/cmd/wm/xdg.c
+++ b/sys/cmd/wm/xdg.c
@@ -56,7 +56,6 @@ void
request_move(struct wl_listener *l, void *data)
{
Client *client = wl_container_of(l, client, event.request_move);
- setinteractive(client, CursorMove, 0);
}
static
@@ -65,7 +64,6 @@ request_resize(struct wl_listener *l, void *data)
{
struct wlr_xdg_toplevel_resize_event *event = data;
Client *client = wl_container_of(l, client, event.request_resize);
- setinteractive(client, CursorResize, event->edges);
}