diff options
| author | Rémi Verschelde | 2017-05-02 11:25:27 +0200 |
|---|---|---|
| committer | GitHub | 2017-05-02 11:25:27 +0200 |
| commit | 82fa41bce3ec7fdd59cfc10f57d72fa092f48b27 (patch) | |
| tree | d9f025aaa4a2ae32c5dc98b2936c0704a12e9e53 /editor/script_editor_debugger.cpp | |
| parent | 28173ad35d72fad12b2810133a3c3d1827bdeeec (diff) | |
| parent | 7b315dc666a7b03a9622e10fb79446b58170fba5 (diff) | |
| download | godot-82fa41bce3ec7fdd59cfc10f57d72fa092f48b27.tar.gz godot-82fa41bce3ec7fdd59cfc10f57d72fa092f48b27.tar.zst godot-82fa41bce3ec7fdd59cfc10f57d72fa092f48b27.zip | |
Merge pull request #8541 from RandomShaper/opt-out-capitalization
Add setting to opt-out of capitalization in property inspectors
Diffstat (limited to 'editor/script_editor_debugger.cpp')
| -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 a5cee0c90..2bc00c62f 100644 --- a/editor/script_editor_debugger.cpp +++ b/editor/script_editor_debugger.cpp @@ -1634,7 +1634,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); |
