From 9642149a8cb8efa406b71e360790474558ecc9f6 Mon Sep 17 00:00:00 2001 From: Jasper Lievisse Adriaanse Date: Tue, 29 May 2007 22:38:45 +0000 Subject: show hidden windows when they should (eg. when the pointer is warped to them) from aon@iki.fi via bernd@ --- app/cwm/client.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'app') diff --git a/app/cwm/client.c b/app/cwm/client.c index a4982b028..0f53d38a9 100644 --- a/app/cwm/client.c +++ b/app/cwm/client.c @@ -4,7 +4,7 @@ * Copyright (c) 2004 Marius Aamodt Eriksen * All rights reserved. * - * $Id: client.c,v 1.3 2007/05/29 22:35:04 jasper Exp $ + * $Id: client.c,v 1.4 2007/05/29 22:38:44 jasper Exp $ */ #include "headers.h" @@ -409,7 +409,11 @@ client_ptrwarp(struct client_ctx *cc) y = cc->geom.height / 2; } - client_raise(cc); + if (cc->state == IconicState) + client_unhide(cc); + else + client_raise(cc); + xu_ptr_setpos(cc->pwin, x, y); } -- cgit v1.2.3