Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
destroy old client popups when focusing another client
Browse files Browse the repository at this point in the history
Closes: #408
  • Loading branch information
sevz17 committed Apr 8, 2023
1 parent 20f61a5 commit e5f1d0f
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions dwl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,9 @@ void
focusclient(Client *c, int lift)
{
struct wlr_surface *old = seat->keyboard_state.focused_surface;
int i;
Client *old_c = NULL;
LayerSurface *old_l = NULL;
int i, old_client_type;

if (locked)
return;
Expand All @@ -1213,6 +1215,12 @@ focusclient(Client *c, int lift)
if (c && client_surface(c) == old)
return;

if ((old_client_type = toplevel_from_wlr_surface(old, &old_c, &old_l)) == XDGShell) {
struct wlr_xdg_popup *popup, *tmp;
wl_list_for_each_safe(popup, tmp, &old_c->surface.xdg->popups, link)
wlr_xdg_popup_destroy(popup);
}

/* Put the new client atop the focus stack and select its monitor */
if (c && !client_is_unmanaged(c)) {
wl_list_remove(&c->flink);
Expand All @@ -1233,19 +1241,16 @@ focusclient(Client *c, int lift)
/* If an overlay is focused, don't focus or activate the client,
* but only update its position in fstack to render its border with focuscolor
* and focus it after the overlay is closed. */
Client *w = NULL;
LayerSurface *l = NULL;
int type = toplevel_from_wlr_surface(old, &w, &l);
if (type == LayerShell && l->scene->node.enabled
&& l->layer_surface->current.layer >= ZWLR_LAYER_SHELL_V1_LAYER_TOP) {
if (old_client_type == LayerShell && old_l->scene->node.enabled
&& old_l->layer_surface->current.layer >= ZWLR_LAYER_SHELL_V1_LAYER_TOP) {
return;
} else if (w && w == exclusive_focus && client_wants_focus(w)) {
} else if (old_c && old_c == exclusive_focus && client_wants_focus(old_c)) {
return;
/* Don't deactivate old client if the new one wants focus, as this causes issues with winecfg
* and probably other clients */
} else if (w && !client_is_unmanaged(w) && (!c || !client_wants_focus(c))) {
} else if (old_c && !client_is_unmanaged(old_c) && (!c || !client_wants_focus(c))) {
for (i = 0; i < 4; i++)
wlr_scene_rect_set_color(w->border[i], bordercolor);
wlr_scene_rect_set_color(old_c->border[i], bordercolor);

client_activate_surface(old, 0);
}
Expand Down

0 comments on commit e5f1d0f

Please sign in to comment.