diff options
author | okan | 2008-05-19 12:56:58 +0000 |
---|---|---|
committer | okan | 2008-05-19 12:56:58 +0000 |
commit | 281da1fba3c4cf7c09351c088ec4f5793f9ce96e (patch) | |
tree | d82b052fc3c83570cb7162ef2886af15ddb5e0aa /client.c | |
parent | ca95bca81231c8c082947924b2af0498d914ce96 (diff) | |
download | cwm-281da1fba3c4cf7c09351c088ec4f5793f9ce96e.tar.gz |
finally implement keyboard binding for group toggling
idea for the
"slightly-less-abhorrent-hack-but-a-hack-nonetheless-TM" from oga@
grab and ungrab the keyboard to get around some silly X apps that like
stealing events
ok oga@
Diffstat (limited to '')
-rw-r--r-- | client.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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. * - * $Id: client.c,v 1.23 2008/05/18 20:00:16 okan Exp $ + * $Id: client.c,v 1.24 2008/05/19 12:56:58 okan Exp $ */ #include "headers.h" @@ -438,6 +438,7 @@ client_unhide(struct client_ctx *cc) XMapWindow(X_Dpy, cc->win); XMapRaised(X_Dpy, cc->pwin); + cc->highlight = 0; cc->flags &= ~CLIENT_HIDDEN; xu_setstate(cc, NormalState); } |