mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Eliminate interior mutability in get_selected_node_list.
This commit is contained in:
parent
701505eb4f
commit
df80265d3a
4 changed files with 26 additions and 26 deletions
|
|
@ -1329,7 +1329,7 @@ TypedArray<Node> EditorSelection::get_selected_nodes() {
|
|||
return ret;
|
||||
}
|
||||
|
||||
List<Node *> &EditorSelection::get_selected_node_list() {
|
||||
const List<Node *> &EditorSelection::get_selected_node_list() {
|
||||
if (changed) {
|
||||
update();
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue