diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-01-10 23:46:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-10 23:46:02 +0100 |
commit | d842557afe6161c08340b11bf17feae247afa246 (patch) | |
tree | ff9abd12302d3d9ec8f7ed4c7512a681da365b48 /doc/classes | |
parent | f39f62954eb5c9f89fb3d1e1218d5a55db0554bd (diff) | |
parent | 60cd3df337df5cadac930da6049d646385089857 (diff) |
Merge pull request #35001 from KoBeWi/nope
Add signal for LineEdit overflow event
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/LineEdit.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/classes/LineEdit.xml b/doc/classes/LineEdit.xml index a360010b7e..d428c133af 100644 --- a/doc/classes/LineEdit.xml +++ b/doc/classes/LineEdit.xml @@ -145,6 +145,11 @@ Emitted when the text changes. </description> </signal> + <signal name="text_change_rejected"> + <description> + Emitted when trying to append text that would overflow the [member max_length]. + </description> + </signal> <signal name="text_entered"> <argument index="0" name="new_text" type="String"> </argument> |