Only center toplevel xdg shell views

This commit is contained in:
emersion 2017-10-08 18:21:39 +02:00
parent 518ef46ef2
commit b72da6cc44
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,8 @@ 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;
if (!roots_xdg_surface->initialized) {
if (view->xdg_surface_v6->role == WLR_XDG_SURFACE_V6_ROLE_TOPLEVEL &&
!roots_xdg_surface->initialized) {
roots_xdg_surface->initialized = view_initialize(view);
}
}