Merge pull request #26442 from PapaFl/fix-wrong-control-binding
Fixed wrong method binding in control
This commit is contained in:
commit
2363c38d87
1 changed files with 1 additions and 1 deletions
|
@ -2721,7 +2721,7 @@ void Control::_bind_methods() {
|
|||
ClassDB::bind_method(D_METHOD("get_scale"), &Control::get_scale);
|
||||
ClassDB::bind_method(D_METHOD("get_pivot_offset"), &Control::get_pivot_offset);
|
||||
ClassDB::bind_method(D_METHOD("get_custom_minimum_size"), &Control::get_custom_minimum_size);
|
||||
ClassDB::bind_method(D_METHOD("get_parent_area_size"), &Control::get_size);
|
||||
ClassDB::bind_method(D_METHOD("get_parent_area_size"), &Control::get_parent_area_size);
|
||||
ClassDB::bind_method(D_METHOD("get_global_position"), &Control::get_global_position);
|
||||
ClassDB::bind_method(D_METHOD("get_rect"), &Control::get_rect);
|
||||
ClassDB::bind_method(D_METHOD("get_global_rect"), &Control::get_global_rect);
|
||||
|
|
Loading…
Add table
Reference in a new issue