diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-21 16:40:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-21 16:40:53 +0200 |
commit | 429787510e0c5b519d438fbd98582977c8d75e2f (patch) | |
tree | 483377d62cc8dddc4ca06861dfa9a816c0b242b3 /include/sway | |
parent | a4d6835881a1ce276ae68f33e5dc94776ee28424 (diff) | |
parent | 989bddc76503f8b11cd6712d158516f0cb0836ca (diff) |
Merge pull request #2909 from makepanic/issues/2906
Parse missing i3 window types
Diffstat (limited to 'include/sway')
-rw-r--r-- | include/sway/xwayland.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sway/xwayland.h b/include/sway/xwayland.h index 121edad3..93055c46 100644 --- a/include/sway/xwayland.h +++ b/include/sway/xwayland.h @@ -10,6 +10,11 @@ enum atom_name { NET_WM_WINDOW_TYPE_UTILITY, NET_WM_WINDOW_TYPE_TOOLBAR, NET_WM_WINDOW_TYPE_SPLASH, + NET_WM_WINDOW_TYPE_MENU, + NET_WM_WINDOW_TYPE_DROPDOWN_MENU, + NET_WM_WINDOW_TYPE_POPUP_MENU, + NET_WM_WINDOW_TYPE_TOOLTIP, + NET_WM_WINDOW_TYPE_NOTIFICATION, NET_WM_STATE_MODAL, ATOM_LAST, }; |