diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2023-01-16 22:21:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-16 22:21:04 +0100 |
commit | 5f4dbea88604c0fa3ca594ebe42e14e146394917 (patch) | |
tree | edaf1561261cd2e9f716954f0c16ece6955561d8 | |
parent | 1c3653e0833badd62574c5f07c1ec1ee4a6a27cb (diff) | |
parent | c6ed9bb77e5183b09a092e4d30a99200d816d3cd (diff) |
Merge pull request #71513 from bruvzg/mpass_docs
Fix typo and add missing docs for WINDOW_FLAG_MOUSE_PASSTHROUGH.
-rw-r--r-- | doc/classes/DisplayServer.xml | 2 | ||||
-rw-r--r-- | doc/classes/Window.xml | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/DisplayServer.xml b/doc/classes/DisplayServer.xml index 1dc4dd3ff0..832adb6e98 100644 --- a/doc/classes/DisplayServer.xml +++ b/doc/classes/DisplayServer.xml @@ -1695,7 +1695,7 @@ [b]Note:[/b] This flag is implemented on macOS. </constant> <constant name="WINDOW_FLAG_MOUSE_PASSTHROUGH" value="7" enum="WindowFlags"> - All mouse event as passed to the underlying window of the same application. + All mouse events are passed to the underlying window of the same application. </constant> <constant name="WINDOW_FLAG_MAX" value="8" enum="WindowFlags"> Max value of the [enum WindowFlags]. diff --git a/doc/classes/Window.xml b/doc/classes/Window.xml index dd145c016c..da31e6761e 100644 --- a/doc/classes/Window.xml +++ b/doc/classes/Window.xml @@ -729,6 +729,7 @@ [b]Note:[/b] This flag is implemented on macOS. </constant> <constant name="FLAG_MOUSE_PASSTHROUGH" value="7" enum="Flags"> + All mouse events are passed to the underlying window of the same application. </constant> <constant name="FLAG_MAX" value="8" enum="Flags"> Max value of the [enum Flags]. |