Fix crash when hiding subwindow during popup of new subwindow
This commit is contained in:
parent
4714e95896
commit
e2cea458a3
1 changed files with 5 additions and 0 deletions
|
@ -363,6 +363,7 @@ void Viewport::_sub_window_grab_focus(Window *p_window) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The index needs to be update before every usage in case an event callback changed the window list.
|
||||||
int index = _sub_window_find(p_window);
|
int index = _sub_window_find(p_window);
|
||||||
ERR_FAIL_COND(index == -1);
|
ERR_FAIL_COND(index == -1);
|
||||||
|
|
||||||
|
@ -374,6 +375,8 @@ void Viewport::_sub_window_grab_focus(Window *p_window) {
|
||||||
gui.subwindow_drag = SUB_WINDOW_DRAG_DISABLED;
|
gui.subwindow_drag = SUB_WINDOW_DRAG_DISABLED;
|
||||||
}
|
}
|
||||||
// Can only move to foreground, but no focus granted.
|
// Can only move to foreground, but no focus granted.
|
||||||
|
index = _sub_window_find(p_window);
|
||||||
|
ERR_FAIL_COND(index == -1);
|
||||||
SubWindow sw = gui.sub_windows[index];
|
SubWindow sw = gui.sub_windows[index];
|
||||||
gui.sub_windows.remove_at(index);
|
gui.sub_windows.remove_at(index);
|
||||||
gui.sub_windows.push_back(sw);
|
gui.sub_windows.push_back(sw);
|
||||||
|
@ -401,6 +404,8 @@ void Viewport::_sub_window_grab_focus(Window *p_window) {
|
||||||
gui.subwindow_focused->_event_callback(DisplayServer::WINDOW_EVENT_FOCUS_IN);
|
gui.subwindow_focused->_event_callback(DisplayServer::WINDOW_EVENT_FOCUS_IN);
|
||||||
|
|
||||||
{ // Move to foreground.
|
{ // Move to foreground.
|
||||||
|
index = _sub_window_find(p_window);
|
||||||
|
ERR_FAIL_COND(index == -1);
|
||||||
SubWindow sw = gui.sub_windows[index];
|
SubWindow sw = gui.sub_windows[index];
|
||||||
gui.sub_windows.remove_at(index);
|
gui.sub_windows.remove_at(index);
|
||||||
gui.sub_windows.push_back(sw);
|
gui.sub_windows.push_back(sw);
|
||||||
|
|
Loading…
Reference in a new issue