diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-05-24 17:32:32 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-05-24 20:10:36 +0300 |
commit | 64d789aba7b5f57611d503be55e9405ff389e05e (patch) | |
tree | f1f8032efab916d03ed7ae6db32708821c19dc7d /doc/classes/Window.xml | |
parent | b7feebefabc2d48b0d4794cd31fc141f1caecc5c (diff) | |
download | redot-engine-64d789aba7b5f57611d503be55e9405ff389e05e.tar.gz |
Fix `get_position_with_decorations` and `get_size_with_decorations` for embedded windows.
Diffstat (limited to 'doc/classes/Window.xml')
-rw-r--r-- | doc/classes/Window.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/classes/Window.xml b/doc/classes/Window.xml index 9c0e8011dc..286b35d642 100644 --- a/doc/classes/Window.xml +++ b/doc/classes/Window.xml @@ -118,12 +118,14 @@ <return type="Vector2i" /> <description> Returns the window's position including its border. + [b]Note:[/b] If [member visible] is [code]false[/code], this method returns the same value as [member position]. </description> </method> <method name="get_size_with_decorations" qualifiers="const"> <return type="Vector2i" /> <description> Returns the window's size including its border. + [b]Note:[/b] If [member visible] is [code]false[/code], this method returns the same value as [member size]. </description> </method> <method name="get_theme_color" qualifiers="const"> |