text_input: Properly handle map/unmap events

The last implementation would ignore these and get it could get into
a bad state where it would start crashing sway.
This commit is contained in:
Alexander Orzechowski 2024-08-04 13:03:59 -04:00 committed by Simon Ser
parent 023f6b0a50
commit 74e507962e
2 changed files with 57 additions and 9 deletions

View file

@ -15,6 +15,8 @@ struct sway_input_popup {
struct wl_listener popup_destroy;
struct wl_listener popup_surface_commit;
struct wl_listener popup_surface_map;
struct wl_listener popup_surface_unmap;
struct wl_listener focused_surface_unmap;
};