From d91120382991b021f0e39a39d4aff97ed8bfdbd9 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Sun, 12 Jun 2016 15:34:58 -0300 Subject: project history was not being saved after a recent fix, this should fix it --- tools/editor/editor_settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/editor/editor_settings.cpp') diff --git a/tools/editor/editor_settings.cpp b/tools/editor/editor_settings.cpp index 26c8826d87..0d0008fcb8 100644 --- a/tools/editor/editor_settings.cpp +++ b/tools/editor/editor_settings.cpp @@ -166,7 +166,7 @@ void EditorSettings::_get_property_list(List *p_list) const { pinfo|=PROPERTY_USAGE_STORAGE; } - if (!E->get().name.begins_with("_")) { + if (!E->get().name.begins_with("_") && !E->get().name.begins_with("projects/")) { pinfo|=PROPERTY_USAGE_EDITOR; } else { pinfo|=PROPERTY_USAGE_STORAGE; //hiddens must always be saved -- cgit v1.2.3