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