aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/plugins/script_editor_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2016-04-04 07:32:00 +0200
committerRémi Verschelde2016-04-06 18:47:22 +0200
commit71da9a1a23cdbef46c15fdc32bff5fdf04faaf0d (patch)
tree121827ef152939accd79558c37925eebfa9a91b7 /tools/editor/plugins/script_editor_plugin.cpp
parent44daccc86114bffdfc0ef6bfee287376113ac937 (diff)
downloadgodot-71da9a1a23cdbef46c15fdc32bff5fdf04faaf0d.tar.gz
godot-71da9a1a23cdbef46c15fdc32bff5fdf04faaf0d.tar.zst
godot-71da9a1a23cdbef46c15fdc32bff5fdf04faaf0d.zip
Separate help pages from scripts by default
Fixes #4199 (cherry picked from commit 9c89d3e042fd7a6472ac2261afedaa235d2b4ebb)
Diffstat (limited to 'tools/editor/plugins/script_editor_plugin.cpp')
-rw-r--r--tools/editor/plugins/script_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp
index 51718bd9d..328169265 100644
--- a/tools/editor/plugins/script_editor_plugin.cpp
+++ b/tools/editor/plugins/script_editor_plugin.cpp
@@ -2709,7 +2709,7 @@ ScriptEditorPlugin::ScriptEditorPlugin(EditorNode *p_node) {
EDITOR_DEF("text_editor/script_temperature_history_size",15);
EDITOR_DEF("text_editor/script_temperature_hot_color",Color(1,0,0,0.3));
EDITOR_DEF("text_editor/script_temperature_cold_color",Color(0,0,1,0.3));
- EDITOR_DEF("text_editor/group_help_pages",false);
+ EDITOR_DEF("text_editor/group_help_pages",true);
EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING,"external_editor/exec_path",PROPERTY_HINT_GLOBAL_FILE));
EDITOR_DEF("external_editor/exec_flags","");