summary refs log tree commit diff
path: root/kbfunc.c
diff options
context:
space:
mode:
authorokan <okan>2016-10-03 13:41:30 +0000
committerokan <okan>2016-10-03 13:41:30 +0000
commita8a111dffd2752fc5be7773a67d03306dd92d05e (patch)
tree058072f7e9624fae10bc8cd38ee29fa2a47f70f7 /kbfunc.c
parent1d3a6905f13d83e61cf5b7403a09d6899cd067e3 (diff)
downloadcwm-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 'kbfunc.c')
-rw-r--r--kbfunc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/kbfunc.c b/kbfunc.c
index efcfd3c..c5b0083 100644
--- a/kbfunc.c
+++ b/kbfunc.c
@@ -187,6 +187,8 @@ kbfunc_menu_client(struct client_ctx *cc, union arg *arg)
 		cc = (struct client_ctx *)mi->ctx;
 		if (cc->flags & CLIENT_HIDDEN)
 			client_unhide(cc);
+		else
+			client_raise(cc);
 		if (old_cc)
 			client_ptrsave(old_cc);
 		client_ptrwarp(cc);