Add client wrapper for XWMHints to support XA_WM_HINTS in PropertyNotify

events; based off a diff from Thomas Adam.
This commit is contained in:
okan
2013-12-11 15:41:11 +00:00
parent 0d9b1becff
commit 7e0749b0b1
3 changed files with 15 additions and 7 deletions

View File

@@ -186,6 +186,9 @@ xev_handle_propertynotify(XEvent *ee)
case XA_WM_NAME:
client_setname(cc);
break;
case XA_WM_HINTS:
client_wm_hints(cc);
break;
case XA_WM_TRANSIENT_FOR:
client_transient(cc);
break;