You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Extend special popup window handling to any non-popup child of a popup.
This commit is contained in:
@@ -3608,8 +3608,23 @@ Rect2i DisplayServerX11::window_get_popup_safe_rect(WindowID p_window) const {
|
||||
void DisplayServerX11::popup_open(WindowID p_window) {
|
||||
_THREAD_SAFE_METHOD_
|
||||
|
||||
bool has_popup_ancestor = false;
|
||||
WindowID transient_root = p_window;
|
||||
while (true) {
|
||||
WindowID parent = windows[transient_root].transient_parent;
|
||||
if (parent == INVALID_WINDOW_ID) {
|
||||
break;
|
||||
} else {
|
||||
transient_root = parent;
|
||||
if (windows[parent].is_popup) {
|
||||
has_popup_ancestor = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
WindowData &wd = windows[p_window];
|
||||
if (wd.is_popup) {
|
||||
if (wd.is_popup || has_popup_ancestor) {
|
||||
// Find current popup parent, or root popup if new window is not transient.
|
||||
List<WindowID>::Element *C = nullptr;
|
||||
List<WindowID>::Element *E = popup_list.back();
|
||||
|
||||
Reference in New Issue
Block a user