mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Merge pull request #113193 from YeldhamDev/proj_manager_wayland_fix
Fix error message when closing the project manager on Wayland
This commit is contained in:
commit
d5b76f733b
1 changed files with 3 additions and 1 deletions
|
|
@ -2962,7 +2962,9 @@ void WaylandEmbedder::handle_fd(int p_fd, int p_revents) {
|
|||
|
||||
WaylandEmbedder::~WaylandEmbedder() {
|
||||
shutdown();
|
||||
proxy_thread.wait_to_finish();
|
||||
if (proxy_thread.is_started()) {
|
||||
proxy_thread.wait_to_finish();
|
||||
}
|
||||
}
|
||||
|
||||
#endif // TOOLS_ENABLED
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue