1
1
mirror of https://github.com/swaywm/sway synced 2024-11-18 04:33:59 +01:00

Merge pull request #2219 from RedSoxFan/fix-2111

Send pointer button events for keyboard-interactive layer surfaces
This commit is contained in:
Drew DeVault 2018-07-06 04:56:59 -07:00 committed by GitHub
commit ddbf437794
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

@ -255,14 +255,12 @@ void dispatch_cursor_button(struct sway_cursor *cursor,
wlr_layer_surface_from_wlr_surface(surface); wlr_layer_surface_from_wlr_surface(surface);
if (layer->current.keyboard_interactive) { if (layer->current.keyboard_interactive) {
seat_set_focus_layer(cursor->seat, layer); seat_set_focus_layer(cursor->seat, layer);
return;
} }
} } else if (surface && cont && cont->type != C_VIEW) {
// Avoid moving keyboard focus from a surface that accepts it to one // Avoid moving keyboard focus from a surface that accepts it to one
// that does not unless the change would move us to a new workspace. // that does not unless the change would move us to a new workspace.
// //
// This prevents, for example, losing focus when clicking on swaybar. // This prevents, for example, losing focus when clicking on swaybar.
if (surface && cont && cont->type != C_VIEW) {
struct sway_container *new_ws = cont; struct sway_container *new_ws = cont;
if (new_ws && new_ws->type != C_WORKSPACE) { if (new_ws && new_ws->type != C_WORKSPACE) {
new_ws = container_parent(new_ws, C_WORKSPACE); new_ws = container_parent(new_ws, C_WORKSPACE);