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@
This commit is contained in:
okan
2011-09-13 08:41:57 +00:00
parent b96caa16e6
commit 796b32123d
3 changed files with 21 additions and 0 deletions

View File

@@ -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;