2
0
Fork 0

Merge pull request #77217 from hakro/disable-nodepath-auto-translate

Do not translate node name when assigned to an exported field
4.1
Rémi Verschelde 2023-05-19 10:11:26 +07:00
commit 9dfae0eb0f
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 0 deletions

@ -3710,6 +3710,7 @@ EditorPropertyNodePath::EditorPropertyNodePath() {
assign->set_flat(true);
assign->set_h_size_flags(SIZE_EXPAND_FILL);
assign->set_clip_text(true);
assign->set_auto_translate(false);
assign->connect("pressed", callable_mp(this, &EditorPropertyNodePath::_node_assign));
SET_DRAG_FORWARDING_CD(assign, EditorPropertyNodePath);
hbc->add_child(assign);