Merge pull request #754 from emersion/popup-map-unmap-damage

[WIP] xdg-shell: damage view when popup is mapped/unmapped
This commit is contained in:
Tony Crisci 2018-03-27 17:37:03 -04:00 committed by GitHub
commit 575bc81d54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View file

@ -177,6 +177,8 @@ struct roots_xdg_popup_v6 {
struct roots_view_child view_child;
struct wlr_xdg_popup_v6 *wlr_popup;
struct wl_listener destroy;
struct wl_listener map;
struct wl_listener unmap;
struct wl_listener new_popup;
};
@ -184,6 +186,8 @@ struct roots_xdg_popup {
struct roots_view_child view_child;
struct wlr_xdg_popup *wlr_popup;
struct wl_listener destroy;
struct wl_listener map;
struct wl_listener unmap;
struct wl_listener new_popup;
};