Merge group_toggle_membership_leave into the buttonrelease event and only do

border work for a group/ungroup action.
This commit is contained in:
okan
2017-12-29 16:55:50 +00:00
parent 5ddaed415c
commit ba75c13953
4 changed files with 7 additions and 13 deletions

View File

@@ -260,8 +260,10 @@ xev_handle_buttonrelease(XEvent *ee)
struct client_ctx *cc;
if ((cc = client_find(e->window)) != NULL) {
if (cc->flags & CLIENT_ACTIVE)
group_toggle_membership_leave(cc);
if (cc->flags & (CLIENT_ACTIVE | CLIENT_HIGHLIGHT)) {
cc->flags &= ~CLIENT_HIGHLIGHT;
client_draw_border(cc);
}
}
}