Kaynağa Gözat

Wayland: commit surface on window creation

This is needed for initializing xdg_surfaces when not using libdecor.
Now the pure xdg_shell code path should work again.
Riteo 1 yıl önce
ebeveyn
işleme
a852e76196
1 değiştirilmiş dosya ile 2 ekleme ve 0 silme
  1. 2 0
      platform/linuxbsd/wayland/wayland_thread.cpp

+ 2 - 0
platform/linuxbsd/wayland/wayland_thread.cpp

@@ -3245,6 +3245,8 @@ void WaylandThread::window_create(DisplayServer::WindowID p_window_id, int p_wid
 		zxdg_exported_v1_add_listener(ws.xdg_exported, &xdg_exported_listener, &ws);
 	}
 
+	wl_surface_commit(ws.wl_surface);
+
 	// Wait for the surface to be configured before continuing.
 	wl_display_roundtrip(wl_display);
 }