mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
Do not remove the commit listener
This commit is contained in:
parent
d09d01236b
commit
3c6f2f29bf
2 changed files with 7 additions and 3 deletions
|
@ -28,6 +28,8 @@ struct roots_xdg_surface_v6 {
|
||||||
struct wl_listener request_move;
|
struct wl_listener request_move;
|
||||||
struct wl_listener request_resize;
|
struct wl_listener request_resize;
|
||||||
struct wl_listener request_show_window_menu;
|
struct wl_listener request_show_window_menu;
|
||||||
|
|
||||||
|
bool initialized;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct roots_xwayland_surface {
|
struct roots_xwayland_surface {
|
||||||
|
|
|
@ -72,9 +72,11 @@ static void handle_commit(struct wl_listener *listener, void *data) {
|
||||||
wl_container_of(listener, roots_xdg_surface, commit);
|
wl_container_of(listener, roots_xdg_surface, commit);
|
||||||
struct roots_view *view = roots_xdg_surface->view;
|
struct roots_view *view = roots_xdg_surface->view;
|
||||||
|
|
||||||
|
if (!roots_xdg_surface->initialized) {
|
||||||
bool centered = view_center(view);
|
bool centered = view_center(view);
|
||||||
if (centered) {
|
if (centered) {
|
||||||
wl_list_remove(&listener->link);
|
roots_xdg_surface->initialized = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue