summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRazah <33985414+icnikerazah@users.noreply.github.com>2018-01-25 00:52:49 +0300
committerGitHub <noreply@github.com>2018-01-25 00:52:49 +0300
commit3455e43a134e8e44e39f968d7a5376f78ba264a1 (patch)
treea8df383107d0f3f7a9f41de2b26b728f4882e1f5
parent81d7b015967655ff724f0a11d9262e6bd4166c98 (diff)
maximum recent files increment fix
-rw-r--r--editor/editor_settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp
index 122034eaa3..433f501fc8 100644
--- a/editor/editor_settings.cpp
+++ b/editor/editor_settings.cpp
@@ -383,7 +383,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) {
_initial_set("text_editor/files/restore_scripts_on_load", true);
_initial_set("text_editor/completion/complete_file_paths", true);
_initial_set("text_editor/files/maximum_recent_files", 20);
- hints["text_editor/files/maximum_recent_files"] = PropertyInfo(Variant::INT, "text_editor/files/maximum_recent_files", PROPERTY_HINT_RANGE, "1, 200, 0");
+ hints["text_editor/files/maximum_recent_files"] = PropertyInfo(Variant::INT, "text_editor/files/maximum_recent_files", PROPERTY_HINT_RANGE, "1, 200, 1");
_initial_set("docks/scene_tree/start_create_dialog_fully_expanded", false);
_initial_set("docks/scene_tree/draw_relationship_lines", false);