Typo fix: rename SortableVisbilityMode
This commit is contained in:
parent
7b1ed520bd
commit
815e905972
15 changed files with 24 additions and 24 deletions
|
|
@ -129,7 +129,7 @@ bool GraphNode::_get(const StringName &p_name, Variant &r_ret) const {
|
|||
void GraphNode::_get_property_list(List<PropertyInfo> *p_list) const {
|
||||
int idx = 0;
|
||||
for (int i = 0; i < get_child_count(false); i++) {
|
||||
Control *child = as_sortable_control(get_child(i, false), SortableVisbilityMode::IGNORE);
|
||||
Control *child = as_sortable_control(get_child(i, false), SortableVisibilityMode::IGNORE);
|
||||
if (!child) {
|
||||
continue;
|
||||
}
|
||||
|
|
@ -657,7 +657,7 @@ void GraphNode::_port_pos_update() {
|
|||
int slot_index = 0;
|
||||
|
||||
for (int i = 0; i < get_child_count(false); i++) {
|
||||
Control *child = as_sortable_control(get_child(i, false), SortableVisbilityMode::IGNORE);
|
||||
Control *child = as_sortable_control(get_child(i, false), SortableVisibilityMode::IGNORE);
|
||||
if (!child) {
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue