summaryrefslogtreecommitdiffstats
path: root/scene/gui
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-10 12:12:32 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-10 12:12:32 -0600
commit792671f4d0ca0112816672f0f6c29645f4e295f0 (patch)
tree2c222152e9d19366a09453d7a7a0aaff3ab33677 /scene/gui
parent983f1bef63dfe4dcdf7a495c49b95157d74806d5 (diff)
parentb131476d40e521fcc133926b29c4d776495ceeb9 (diff)
downloadredot-engine-792671f4d0ca0112816672f0f6c29645f4e295f0.tar.gz
Merge pull request #98720 from timothyqiu/file-dialog-atm
Disable auto translation of `FileDialog`'s file list
Diffstat (limited to 'scene/gui')
-rw-r--r--scene/gui/file_dialog.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/file_dialog.cpp b/scene/gui/file_dialog.cpp
index 18864b1289..9eda1a256f 100644
--- a/scene/gui/file_dialog.cpp
+++ b/scene/gui/file_dialog.cpp
@@ -1586,6 +1586,7 @@ FileDialog::FileDialog() {
vbox->add_child(hbc);
tree = memnew(Tree);
+ tree->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
tree->set_hide_root(true);
vbox->add_margin_child(ETR("Directories & Files:"), tree, true);