diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-02 23:19:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-02 23:19:53 +0100 |
commit | 543462eb29245a7ffb08750ecf1c93d7522e3721 (patch) | |
tree | 5535210609831bf16ec29715c92269c8b9157a34 /doc | |
parent | d3c992429cb6a868801e855bb4e2c6eb7cfbaf5d (diff) | |
parent | 0699941f07535ff24763fd772dd4e8b8a9939e26 (diff) |
Merge pull request #55294 from ConteZero/text_edit_drag_and_drop
Add drag and drop to TextEdit
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/TextEdit.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/TextEdit.xml b/doc/classes/TextEdit.xml index 16d8595b4e..d14f8a9b35 100644 --- a/doc/classes/TextEdit.xml +++ b/doc/classes/TextEdit.xml @@ -586,6 +586,13 @@ Returns whether the menu is visible. Use this instead of [code]get_menu().visible[/code] to improve performance (so the creation of the menu is avoided). </description> </method> + <method name="is_mouse_over_selection" qualifiers="const"> + <return type="bool" /> + <argument index="0" name="edges" type="bool" /> + <description> + Returns whether the mouse is over selection. If [code]edges[/code] is [code]true[/code], the edges are considered part of the selection. + </description> + </method> <method name="is_overtype_mode_enabled" qualifiers="const"> <return type="bool" /> <description> |