aboutsummaryrefslogtreecommitdiff
path: root/editor/script_editor_debugger.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-05-02 11:25:27 +0200
committerGitHub2017-05-02 11:25:27 +0200
commit82fa41bce3ec7fdd59cfc10f57d72fa092f48b27 (patch)
treed9f025aaa4a2ae32c5dc98b2936c0704a12e9e53 /editor/script_editor_debugger.cpp
parent28173ad35d72fad12b2810133a3c3d1827bdeeec (diff)
parent7b315dc666a7b03a9622e10fb79446b58170fba5 (diff)
downloadgodot-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.cpp2
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);