aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Cella <guido@guidocella.xyz>2020-12-20 15:55:52 +0100
committerGuido Cella <guido@guidocella.xyz>2020-12-20 15:55:52 +0100
commit13c7e039bbd823df6ed8475c1ee1cc90a43d729a (patch)
tree732771930a077fe9bac03be97889fb8d2886efea
parenta571ea465c545f662c4bc9899a31150e045074d0 (diff)
deactivate the focused client on overlay focus
-rw-r--r--dwl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/dwl.c b/dwl.c
index 888001c..4fdcc3a 100644
--- a/dwl.c
+++ b/dwl.c
@@ -621,6 +621,8 @@ arrangelayers(Monitor *m)
&m->layers[layers_above_shell[i]], link) {
if (layersurface->layer_surface->current.keyboard_interactive &&
layersurface->layer_surface->mapped) {
+ // Deactivate the focused client.
+ focusclient(NULL, false);
wlr_seat_keyboard_notify_enter(seat, layersurface->layer_surface->surface,
kb->keycodes, kb->num_keycodes, &kb->modifiers);
return;