diff options
author | Marvin Borner | 2021-03-28 14:01:53 +0200 |
---|---|---|
committer | Marvin Borner | 2021-03-28 14:01:53 +0200 |
commit | 60750501da4eb0c020e971b45ae3a964c903e12d (patch) | |
tree | fc95ff546a7acaa22327bd27dc098230f820c531 /apps/wm.c | |
parent | ba2c07447ba1278d8ad38ca58a8ae94c82d2d008 (diff) |
Fun with widgets
Diffstat (limited to 'apps/wm.c')
-rw-r--r-- | apps/wm.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -367,6 +367,7 @@ static void handle_event_mouse(struct event_mouse *event) struct message_mouse msg = { 0 }; msg.header.state = MSG_GO_ON; + msg.id = win->id; msg.pos = vec2_sub(mouse.pos, win->pos); msg_send(win->client.pid, GUI_MOUSE, &msg, sizeof(msg)); } |