mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
Fix #1104
This commit is contained in:
parent
5c08e13e50
commit
8aa195e311
@ -175,7 +175,13 @@ static void handle_cursor_button(struct wl_listener *listener, void *data) {
|
||||
double sx, sy;
|
||||
struct sway_container *cont =
|
||||
container_at_cursor(cursor, &surface, &sx, &sy);
|
||||
sway_seat_set_focus(cursor->seat, cont);
|
||||
// TODO: Actually test if the surface accepts keyboard input, rather
|
||||
// than assuming it does not
|
||||
// Layer surfaces with keyboard_interactive=true will change how this
|
||||
// works, for example.
|
||||
if (!surface || cont->type == C_VIEW) {
|
||||
sway_seat_set_focus(cursor->seat, cont);
|
||||
}
|
||||
}
|
||||
|
||||
wlr_seat_pointer_notify_button(cursor->seat->wlr_seat, event->time_msec,
|
||||
|
Loading…
Reference in New Issue
Block a user