diff options
author | okan <okan> | 2016-10-03 13:41:30 +0000 |
---|---|---|
committer | okan <okan> | 2016-10-03 13:41:30 +0000 |
commit | a8a111dffd2752fc5be7773a67d03306dd92d05e (patch) | |
tree | 058072f7e9624fae10bc8cd38ee29fa2a47f70f7 /client.c | |
parent | 1d3a6905f13d83e61cf5b7403a09d6899cd067e3 (diff) | |
download | cwm-a8a111dffd2752fc5be7773a67d03306dd92d05e.tar.gz cwm-a8a111dffd2752fc5be7773a67d03306dd92d05e.tar.xz cwm-a8a111dffd2752fc5be7773a67d03306dd92d05e.zip |
client_ptrwarp should not deal with unhiding or raising clients (non ptr
requests); most callers do this already - deal with the few that do not. client_ptrwarp becomes a simple wrapper (setpos) but it will be expanded.
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/client.c b/client.c index 6e91ea5..4aa69b9 100644 --- a/client.c +++ b/client.c @@ -469,11 +469,6 @@ client_config(struct client_ctx *cc) void client_ptrwarp(struct client_ctx *cc) { - if (cc->flags & CLIENT_HIDDEN) - client_unhide(cc); - else - client_raise(cc); - xu_ptr_setpos(cc->win, cc->ptr.x, cc->ptr.y); } @@ -686,6 +681,7 @@ client_cycle(struct screen_ctx *sc, int flags) /* reset when cycling mod is released. XXX I hate this hack */ sc->cycling = 1; client_ptrsave(oldcc); + client_raise(newcc); client_ptrwarp(newcc); } |