diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-09-19 08:14:00 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-09-19 19:21:29 +0800 |
commit | 14321b8ed5e151987c0e2a0dd28d7a4e2483faba (patch) | |
tree | 9506b0a903bd48eb925506942bfddbde7a6ddb22 /editor/editor_inspector.cpp | |
parent | 694d3c2930bdfb43fd93e1e6641f66c4f19a5c77 (diff) | |
download | redot-engine-14321b8ed5e151987c0e2a0dd28d7a4e2483faba.tar.gz |
Set auto translate mode for drag previews
- Controls
- `LineEdit`, `TextEdit`: Always disabled since it's dragging user input.
- `TabBar`: Use the same auto translate mode as the node.
- `RichTextLabel`: Always disable since auto translation is done
differently from other controls (selection text you get
programmatically is always after auto translation).
- Editor
- Disable drag preview auto translation if the text is user input,
filename, or class name.
- Also disabled unexpected auto translation for audio bus effect names.
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r-- | editor/editor_inspector.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 4cd0761691..a215662f16 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -893,6 +893,7 @@ Variant EditorProperty::get_drag_data(const Point2 &p_point) { Label *drag_label = memnew(Label); drag_label->set_text(property); + drag_label->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED); // Don't translate raw property name. set_drag_preview(drag_label); return dp; } |