diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2023-08-15 22:06:15 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2023-08-16 10:42:08 -0300 |
commit | de27df5da30ebf3576cd545b7ef3c55788efd083 (patch) | |
tree | 12169bd80bac6771511eee179bab08560a9c221f /scene/main/viewport.h | |
parent | 90f90cbcb0cf2c44a3114048accfd5b407c4ac98 (diff) | |
download | redot-engine-de27df5da30ebf3576cd545b7ef3c55788efd083.tar.gz |
Allow to get a list of visible embedded `Window`s
Diffstat (limited to 'scene/main/viewport.h')
-rw-r--r-- | scene/main/viewport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/main/viewport.h b/scene/main/viewport.h index 1e107ea99c..346dc6af7e 100644 --- a/scene/main/viewport.h +++ b/scene/main/viewport.h @@ -653,6 +653,7 @@ public: void set_embedding_subwindows(bool p_embed); bool is_embedding_subwindows() const; + TypedArray<Window> get_embedded_subwindows() const; void subwindow_set_popup_safe_rect(Window *p_window, const Rect2i &p_rect); Rect2i subwindow_get_popup_safe_rect(Window *p_window) const; |