From 796b32123d88fd5946c97fb79ad551600c772f62 Mon Sep 17 00:00:00 2001 From: okan Date: Tue, 13 Sep 2011 08:41:57 +0000 Subject: add WM_TRANSIENT_FOR event support: moves dialogs, toolbars and such to the group of the main application window; based on a diff from Alexander Polakov with CLIENT_IGNORE flag suggestion from oga@. ok oga@ --- xevents.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'xevents.c') diff --git a/xevents.c b/xevents.c index 34dd051..6c4ba71 100644 --- a/xevents.c +++ b/xevents.c @@ -191,6 +191,9 @@ xev_handle_propertynotify(XEvent *ee) case XA_WM_NAME: client_setname(cc); break; + case XA_WM_TRANSIENT_FOR: + client_transient(cc); + break; default: /* do nothing */ break; -- cgit 1.4.1