diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-12 16:46:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-12 16:46:55 +0100 |
commit | d3a6b6daaab4c8dfb7bdf35cc2fe2145ae6c22a1 (patch) | |
tree | 0f2638ed2188d1de074dc33829c6891c1f1019cf /doc/classes | |
parent | 498805282a61bb8bc29fa81f5bf06678293e6bfc (diff) | |
parent | 7d59b81d79236ea82c72cfa5cb6a0ee341762fc6 (diff) |
Merge pull request #56953 from bruvzg/ex_wnd
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/DisplayServer.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/classes/DisplayServer.xml b/doc/classes/DisplayServer.xml index d28fd5d817..a6b854e36a 100644 --- a/doc/classes/DisplayServer.xml +++ b/doc/classes/DisplayServer.xml @@ -644,6 +644,16 @@ <description> </description> </method> + <method name="window_set_exclusive"> + <return type="void" /> + <argument index="0" name="window_id" type="int" /> + <argument index="1" name="exclusive" type="bool" /> + <description> + If set to [code]true[/code], this window will always stay on top of its parent window, parent window will ignore input while this window is opened. + [b]Note:[/b] On macOS, exclusive windows are confined to the same space (virtual desktop or screen) as the parent window. + [b]Note:[/b] This method is implemented on macOS and Windows. + </description> + </method> <method name="window_set_flag"> <return type="void" /> <argument index="0" name="flag" type="int" enum="DisplayServer.WindowFlags" /> |