mirror of
https://github.com/godotengine/godot.git
synced 2025-01-10 12:11:05 +00:00
Fix LineEdit select method binding
This commit is contained in:
parent
a65edb4caa
commit
3985660ca4
@ -786,7 +786,7 @@ void LineEdit::_bind_methods() {
|
||||
ObjectTypeDB::bind_method(_MD("is_editable"),&LineEdit::is_editable);
|
||||
ObjectTypeDB::bind_method(_MD("set_secret","enabled"),&LineEdit::set_secret);
|
||||
ObjectTypeDB::bind_method(_MD("is_secret"),&LineEdit::is_secret);
|
||||
ObjectTypeDB::bind_method(_MD("select","from","to"),&LineEdit::is_secret,DEFVAL(0),DEFVAL(-1));
|
||||
ObjectTypeDB::bind_method(_MD("select","from","to"),&LineEdit::select,DEFVAL(0),DEFVAL(-1));
|
||||
|
||||
ADD_SIGNAL( MethodInfo("text_changed", PropertyInfo( Variant::STRING, "text" )) );
|
||||
ADD_SIGNAL( MethodInfo("text_entered", PropertyInfo( Variant::STRING, "text" )) );
|
||||
|
Loading…
Reference in New Issue
Block a user