diff options
| author | Pedro J. Estébanez | 2017-04-26 10:11:48 +0200 |
|---|---|---|
| committer | Pedro J. Estébanez | 2017-04-27 08:46:45 +0200 |
| commit | 9a0e08a35263ede46f7cacf9290ba1407f4eb733 (patch) | |
| tree | b9684b4460d1ccbd3960576595dbd5f4ad47eb11 /editor/script_editor_debugger.cpp | |
| parent | 90576e0c7a446977dfe9fc7aa572a3b98974a1cc (diff) | |
| download | godot-9a0e08a35263ede46f7cacf9290ba1407f4eb733.tar.gz godot-9a0e08a35263ede46f7cacf9290ba1407f4eb733.tar.zst godot-9a0e08a35263ede46f7cacf9290ba1407f4eb733.zip | |
Add setting to opt-out of capitalization in the property inspector
Diffstat (limited to '')
| -rw-r--r-- | editor/script_editor_debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/script_editor_debugger.cpp b/editor/script_editor_debugger.cpp index 68f48dd94..05ca71e78 100644 --- a/editor/script_editor_debugger.cpp +++ b/editor/script_editor_debugger.cpp @@ -1624,7 +1624,7 @@ ScriptEditorDebugger::ScriptEditorDebugger(EditorNode *p_editor) { inspector->set_h_size_flags(SIZE_EXPAND_FILL); inspector->hide_top_label(); inspector->get_scene_tree()->set_column_title(0, TTR("Variable")); - inspector->set_capitalize_paths(false); + inspector->set_enable_capitalize_paths(false); inspector->set_read_only(true); sc->add_child(inspector); |
