diff options
author | okan | 2016-10-03 13:41:30 +0000 |
---|---|---|
committer | okan | 2016-10-03 13:41:30 +0000 |
commit | 59314d892ab90c218f2fd9b63761bf898ac4da2f (patch) | |
tree | 9aa10135d2a42b84834f16198438b2dfd6cf251c /xevents.c | |
parent | d0575d0c5db22491b1c794d28ede0d6c6ecf34c7 (diff) | |
download | cwm-59314d892ab90c218f2fd9b63761bf898ac4da2f.tar.gz |
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 'xevents.c')
-rw-r--r-- | xevents.c | 6 |
1 files changed, 5 insertions, 1 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: xevents.c,v 1.122 2016/09/16 14:32:02 okan Exp $ + * $OpenBSD: xevents.c,v 1.123 2016/10/03 13:41:30 okan Exp $ */ /* @@ -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]) { |