diff options
| author | Rémi Verschelde | 2017-05-02 11:25:25 +0200 |
|---|---|---|
| committer | GitHub | 2017-05-02 11:25:25 +0200 |
| commit | dd5fd4fdacf0504ff26c773f29ae7a5aa419d88b (patch) | |
| tree | a3af7724350d20bd4fe62d2b4a85b641018a41d0 /editor/script_editor_debugger.cpp | |
| parent | fb8cee9af9a649d0458e65a02839f5a51a16cc79 (diff) | |
| parent | 9a0e08a35263ede46f7cacf9290ba1407f4eb733 (diff) | |
| download | godot-dd5fd4fdacf0504ff26c773f29ae7a5aa419d88b.tar.gz godot-dd5fd4fdacf0504ff26c773f29ae7a5aa419d88b.tar.zst godot-dd5fd4fdacf0504ff26c773f29ae7a5aa419d88b.zip | |
Merge pull request #8542 from RandomShaper/opt-out-capitalization-2.1
Add setting to opt-out of capitalization in property inspectors (2.1)
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); |
