diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2017-12-29 16:55:51 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2017-12-29 16:55:51 +0000 |
commit | 2ac6adfc517aafee63f26fd109cac34e00d092a8 (patch) | |
tree | 3dfe5e4db5e06f09e7eff7f33547a83be1e01ffd /app/cwm/xevents.c | |
parent | 66cbb9f6e913b1652216045da296e11ed23cab87 (diff) |
Merge group_toggle_membership_leave into the buttonrelease event and only do
border work for a group/ungroup action.
Diffstat (limited to 'app/cwm/xevents.c')
-rw-r--r-- | app/cwm/xevents.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app/cwm/xevents.c b/app/cwm/xevents.c index cc5aaf8cd..aa9856b56 100644 --- a/app/cwm/xevents.c +++ b/app/cwm/xevents.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: xevents.c,v 1.130 2017/12/29 12:54:54 okan Exp $ + * $OpenBSD: xevents.c,v 1.131 2017/12/29 16:55:50 okan Exp $ */ /* @@ -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); + } } } |