Do not remove the commit listener

This commit is contained in:
emersion 2017-10-08 17:28:19 +02:00
parent d09d01236b
commit 3c6f2f29bf
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
2 changed files with 7 additions and 3 deletions

View File

@ -28,6 +28,8 @@ struct roots_xdg_surface_v6 {
struct wl_listener request_move;
struct wl_listener request_resize;
struct wl_listener request_show_window_menu;
bool initialized;
};
struct roots_xwayland_surface {

View File

@ -72,9 +72,11 @@ static void handle_commit(struct wl_listener *listener, void *data) {
wl_container_of(listener, roots_xdg_surface, commit);
struct roots_view *view = roots_xdg_surface->view;
bool centered = view_center(view);
if (centered) {
wl_list_remove(&listener->link);
if (!roots_xdg_surface->initialized) {
bool centered = view_center(view);
if (centered) {
roots_xdg_surface->initialized = true;
}
}
}