diff options
author | Some Chinese Guy <freemancrowbar100500@gmail.com> | 2020-03-28 23:49:35 +0300 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-03-29 20:50:36 +0200 |
commit | 63e45bf3217a484775f24f14c05d228c79348b7a (patch) | |
tree | 9aae825ce906c44128527a014ea01b2358bb2698 /sway | |
parent | 798fc240812cc7136a7f2f755e68194884f5dbc4 (diff) |
switched to setting focus with seat_set_focus
Diffstat (limited to 'sway')
-rw-r--r-- | sway/input/cursor.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 5dc7290d..878a8e99 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -352,7 +352,7 @@ static void handle_touch_down(struct wl_listener *listener, void *data) { wlr_cursor_absolute_to_layout_coords(cursor->cursor, event->device, event->x, event->y, &lx, &ly); double sx, sy; - node_at_coords(seat, lx, ly, &surface, &sx, &sy); + struct sway_node *focused_node = node_at_coords(seat, lx, ly, &surface, &sx, &sy); seat->touch_id = event->touch_id; seat->touch_x = lx; @@ -369,11 +369,7 @@ static void handle_touch_down(struct wl_listener *listener, void *data) { cursor_hide(cursor); } - //move cursor so focus follows touch - float delta_x = lx - cursor->cursor->x; - float delta_y = ly - cursor->cursor->y; - cursor_motion(cursor, 0, event->device, delta_x, - delta_y, delta_x, delta_y); + seat_set_focus(seat, focused_node); } static void handle_touch_up(struct wl_listener *listener, void *data) { |