summaryrefslogtreecommitdiffstats
path: root/editor/multi_node_edit.h
diff options
context:
space:
mode:
authorPouleyKetchoupp <pouleyketchoup@gmail.com>2019-11-10 09:37:51 +0100
committerPouleyKetchoupp <pouleyketchoup@gmail.com>2019-11-10 09:37:51 +0100
commit824bc3fed880fe7837fc1e7f4c3936fc321a115a (patch)
treeb367f87175bf2efeb4a2eea5b570918d363d54f8 /editor/multi_node_edit.h
parent94f00eb6c5323dff933a4985b60e8ebf9391f940 (diff)
downloadredot-engine-824bc3fed880fe7837fc1e7f4c3936fc321a115a.tar.gz
Keep focus on the top-most node for multi-selection in scene tree
Makes behavior consistent with selecting/deselecting single nodes and fixes a regression about the focused node being lost when multi-selecting. Fixes #33332
Diffstat (limited to 'editor/multi_node_edit.h')
-rw-r--r--editor/multi_node_edit.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/multi_node_edit.h b/editor/multi_node_edit.h
index b9192b206a..33df4a2ca5 100644
--- a/editor/multi_node_edit.h
+++ b/editor/multi_node_edit.h
@@ -54,6 +54,9 @@ public:
void clear_nodes();
void add_node(const NodePath &p_node);
+ int get_node_count() const;
+ NodePath get_node(int p_index) const;
+
void set_property_field(const StringName &p_property, const Variant &p_value, const String &p_field);
MultiNodeEdit();