aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorokan2008-05-19 12:56:58 +0000
committerokan2008-05-19 12:56:58 +0000
commit281da1fba3c4cf7c09351c088ec4f5793f9ce96e (patch)
treed82b052fc3c83570cb7162ef2886af15ddb5e0aa /client.c
parentca95bca81231c8c082947924b2af0498d914ce96 (diff)
downloadcwm-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/client.c b/client.c
index a67e787..b869ab5 100644
--- a/client.c
+++ b/client.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.
*
- * $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);
}