diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-02-24 01:00:01 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-02-24 01:00:01 +0800 |
commit | 9c63a5222da37f22f9d733b65ad897385e55f69d (patch) | |
tree | 8ed3371547bb254fa7daf80b73ea3cdb80d77e54 | |
parent | 87d40ba743ff3a3a484db051c11b16559604efa9 (diff) | |
download | redot-engine-9c63a5222da37f22f9d733b65ad897385e55f69d.tar.gz |
Don't translate filenames in FileSystem dock
-rw-r--r-- | editor/filesystem_dock.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index 74bb152e7c..0356d0d3ad 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -154,6 +154,8 @@ void FileSystemList::_bind_methods() { } FileSystemList::FileSystemList() { + set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED); + popup_editor = memnew(Popup); add_child(popup_editor); |