summaryrefslogtreecommitdiffstats
path: root/editor/find_in_files.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2024-03-23 21:15:39 -0700
committerGitHub <noreply@github.com>2024-03-23 21:15:39 -0700
commit05372773e172832a750bf98278d5f816d613c92d (patch)
tree224cbb37eab2a3595d5d024b2d63dab7e6ecb679 /editor/find_in_files.cpp
parent9a8fb26d914192ed0d622614e746a6eb68f5c4f1 (diff)
parent8cd1ebbd6da7505bfa8a32b1e3c2d0fe5810dba2 (diff)
downloadredot-engine-05372773e172832a750bf98278d5f816d613c92d.tar.gz
Merge pull request #89599 from timothyqiu/vegetate
Fix unexpected auto translation of editor `Tree` content
Diffstat (limited to 'editor/find_in_files.cpp')
-rw-r--r--editor/find_in_files.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/find_in_files.cpp b/editor/find_in_files.cpp
index 965cb39df3..2d3f1a5b90 100644
--- a/editor/find_in_files.cpp
+++ b/editor/find_in_files.cpp
@@ -615,6 +615,7 @@ FindInFilesPanel::FindInFilesPanel() {
}
_results_display = memnew(Tree);
+ _results_display->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
_results_display->set_v_size_flags(SIZE_EXPAND_FILL);
_results_display->connect("item_selected", callable_mp(this, &FindInFilesPanel::_on_result_selected));
_results_display->connect("item_edited", callable_mp(this, &FindInFilesPanel::_on_item_edited));