1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Remove unneeded call in DisplayServerX11

X11 does not need setting exclusive flag (it is not implemented).

Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
This commit is contained in:
alvinhochun
2024-07-25 17:11:15 +08:00
committed by GitHub
parent 97aa278edb
commit 24e02d56cb

View File

@@ -1750,7 +1750,6 @@ DisplayServer::WindowID DisplayServerX11::create_sub_window(WindowMode p_mode, V
}
#endif
window_set_exclusive(id, p_exclusive);
if (p_transient_parent != INVALID_WINDOW_ID) {
window_set_transient(id, p_transient_parent);
}