diff options
author | Anish Mishra <mishragames@gmail.com> | 2024-10-15 16:48:55 +0530 |
---|---|---|
committer | Anish Mishra <mishragames@gmail.com> | 2024-10-16 15:33:47 +0530 |
commit | 7ee72d2f81b1d1e1190ce6d64cedf26a89cc36a1 (patch) | |
tree | 32c251ae6f5dcc864ddcad6d6085f289a7c1b8e8 | |
parent | af77100e394dcaca609b15bef815ed17475e51ed (diff) | |
download | redot-engine-7ee72d2f81b1d1e1190ce6d64cedf26a89cc36a1.tar.gz |
Update use_native_dialog description in FileDialog
-rw-r--r-- | doc/classes/FileDialog.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/FileDialog.xml b/doc/classes/FileDialog.xml index 9529fac77e..18b8eb1d39 100644 --- a/doc/classes/FileDialog.xml +++ b/doc/classes/FileDialog.xml @@ -164,7 +164,7 @@ <member name="size" type="Vector2i" setter="set_size" getter="get_size" overrides="Window" default="Vector2i(640, 360)" /> <member name="title" type="String" setter="set_title" getter="get_title" overrides="Window" default=""Save a File"" /> <member name="use_native_dialog" type="bool" setter="set_use_native_dialog" getter="get_use_native_dialog" default="false"> - If [code]true[/code], [member access] is set to [constant ACCESS_FILESYSTEM], and it is supported by the current [DisplayServer], OS native dialog will be used instead of custom one. + If [code]true[/code], and if supported by the current [DisplayServer], OS native dialog will be used instead of custom one. [b]Note:[/b] On Linux and macOS, sandboxed apps always use native dialogs to access the host file system. [b]Note:[/b] On macOS, sandboxed apps will save security-scoped bookmarks to retain access to the opened folders across multiple sessions. Use [method OS.get_granted_permissions] to get a list of saved bookmarks. [b]Note:[/b] Native dialogs are isolated from the base process, file dialog properties can't be modified once the dialog is shown. |