mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-05 21:15:59 +01:00
xdg-shell: reset added/committed flag on unmap
When a client attaches a NULL buffer to its wl_surface, it's unmapped. This resets the xdg_surface in its initial state. An extra NULL commit makes the compositor send an initial configure event. Note, wlr_xdg_toplevel.added is separate from wlr_xdg_surface.added. Closes: https://github.com/swaywm/sway/issues/7397
This commit is contained in:
parent
d36dd96e8d
commit
e69dd909f7
2 changed files with 4 additions and 0 deletions
|
@ -449,6 +449,8 @@ void unmap_xdg_popup(struct wlr_xdg_popup *popup) {
|
|||
|
||||
popup->seat = NULL;
|
||||
}
|
||||
|
||||
popup->committed = false;
|
||||
}
|
||||
|
||||
void destroy_xdg_popup(struct wlr_xdg_popup *popup) {
|
||||
|
|
|
@ -535,6 +535,8 @@ void unmap_xdg_toplevel(struct wlr_xdg_toplevel *toplevel) {
|
|||
toplevel->requested.fullscreen = false;
|
||||
toplevel->requested.maximized = false;
|
||||
toplevel->requested.minimized = false;
|
||||
|
||||
toplevel->added = false;
|
||||
}
|
||||
|
||||
void destroy_xdg_toplevel(struct wlr_xdg_toplevel *toplevel) {
|
||||
|
|
Loading…
Reference in a new issue