diff options
author | okan | 2019-02-28 13:11:53 +0000 |
---|---|---|
committer | okan | 2019-02-28 13:11:53 +0000 |
commit | f0f3f957861987532ec41c77ea3d04cec1e43938 (patch) | |
tree | 774ed75abb458b1db5a34e97229fea06c42bcc0f /client.c | |
parent | 35d7a7dabf8e1cb8891b2661e5798de4f9f06f87 (diff) | |
download | cwm-f0f3f957861987532ec41c77ea3d04cec1e43938.tar.gz |
Selectively hide and show clients based on state; merge client_unhide() and
client_show().
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 19 |
1 files changed, 5 insertions, 14 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. * - * $OpenBSD: client.c,v 1.251 2019/02/23 19:17:17 okan Exp $ + * $OpenBSD: client.c,v 1.252 2019/02/28 13:11:53 okan Exp $ */ #include <sys/types.h> @@ -128,7 +128,7 @@ client_init(Window win, struct screen_ctx *sc, int active) if (client_get_wm_state(cc) == IconicState) client_hide(cc); else - client_unhide(cc); + client_show(cc); if (mapped) { if (cc->gc) { @@ -527,10 +527,10 @@ client_hide(struct client_ctx *cc) { XUnmapWindow(X_Dpy, cc->win); - if (cc->flags & CLIENT_ACTIVE) + if (cc->flags & CLIENT_ACTIVE) { + cc->flags &= ~CLIENT_ACTIVE; xu_ewmh_net_active_window(cc->sc, None); - - cc->flags &= ~CLIENT_ACTIVE; + } cc->flags |= CLIENT_HIDDEN; client_set_wm_state(cc, IconicState); } @@ -538,15 +538,6 @@ client_hide(struct client_ctx *cc) void client_show(struct client_ctx *cc) { - if (cc->flags & CLIENT_HIDDEN) - client_unhide(cc); - else - client_raise(cc); -} - -void -client_unhide(struct client_ctx *cc) -{ XMapRaised(X_Dpy, cc->win); cc->flags &= ~CLIENT_HIDDEN; |