From a8a111dffd2752fc5be7773a67d03306dd92d05e Mon Sep 17 00:00:00 2001 From: okan Date: Mon, 3 Oct 2016 13:41:30 +0000 Subject: 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. --- xevents.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'xevents.c') diff --git a/xevents.c b/xevents.c index 582f839..a4ff04d 100644 --- a/xevents.c +++ b/xevents.c @@ -344,6 +344,10 @@ xev_handle_clientmessage(XEvent *ee) if ((cc = client_find(e->window)) != NULL) { if ((old_cc = client_current()) != NULL) client_ptrsave(old_cc); + if (cc->flags & CLIENT_HIDDEN) + client_unhide(cc); + else + client_raise(cc); client_ptrwarp(cc); } } else if (e->message_type == ewmh[_NET_WM_DESKTOP]) { -- cgit 1.4.1