Rename raise() to move_to_front()

This commit is contained in:
kobewi
2022-04-10 20:52:55 +02:00
parent 0f62e357e0
commit b218727599
12 changed files with 25 additions and 32 deletions

View File

@ -351,7 +351,7 @@ void GraphEdit::_graph_node_raised(Node *p_gn) {
if (gn->is_comment()) {
move_child(gn, 0);
} else {
gn->raise();
gn->move_to_front();
}
}