mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 19:42:43 +00:00
Merge pull request #95526 from alvinhochun/fix-pr94706
DisplayServerWindows: Fix logic when creating with transient parent
This commit is contained in:
commit
f27724e902
@ -5391,13 +5391,15 @@ DisplayServer::WindowID DisplayServerWindows::_create_window(WindowMode p_mode,
|
||||
{
|
||||
WindowData *wd_transient_parent = nullptr;
|
||||
HWND owner_hwnd = nullptr;
|
||||
if (p_transient_parent != INVALID_WINDOW_ID && !windows.has(p_transient_parent)) {
|
||||
ERR_PRINT("Condition \"!windows.has(p_transient_parent)\" is true.");
|
||||
p_transient_parent = INVALID_WINDOW_ID;
|
||||
} else {
|
||||
wd_transient_parent = &windows[p_transient_parent];
|
||||
if (p_exclusive) {
|
||||
owner_hwnd = wd_transient_parent->hWnd;
|
||||
if (p_transient_parent != INVALID_WINDOW_ID) {
|
||||
if (!windows.has(p_transient_parent)) {
|
||||
ERR_PRINT("Condition \"!windows.has(p_transient_parent)\" is true.");
|
||||
p_transient_parent = INVALID_WINDOW_ID;
|
||||
} else {
|
||||
wd_transient_parent = &windows[p_transient_parent];
|
||||
if (p_exclusive) {
|
||||
owner_hwnd = wd_transient_parent->hWnd;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user