diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-07-17 12:28:41 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-17 12:28:41 -0300 |
commit | deeec8894ad39d7254cf31f46321fb3cd869461f (patch) | |
tree | 3ea5917ef09ef5e431783284e3295eb90099a48e /doc/classes/LineEdit.xml | |
parent | 7537875d862837d43e50be2cc14de9d8db8f5fe3 (diff) | |
parent | a3fb76cd450661816f2e4f65dc172917b47c11e6 (diff) |
Merge pull request #50530 from reduz/create-popups-on-demand
Create many types of popups on demand
Diffstat (limited to 'doc/classes/LineEdit.xml')
-rw-r--r-- | doc/classes/LineEdit.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/LineEdit.xml b/doc/classes/LineEdit.xml index 773f7b1a02..af6fc738c7 100644 --- a/doc/classes/LineEdit.xml +++ b/doc/classes/LineEdit.xml @@ -102,6 +102,13 @@ Inserts [code]text[/code] at the caret. If the resulting value is longer than [member max_length], nothing happens. </description> </method> + <method name="is_menu_visible" qualifiers="const"> + <return type="bool"> + </return> + <description> + 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="menu_option"> <return type="void"> </return> |