소스 검색

project history was not being saved after a recent fix, this should fix it

Juan Linietsky 9 년 전
부모
커밋
d911203829
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tools/editor/editor_settings.cpp

+ 1 - 1
tools/editor/editor_settings.cpp

@@ -166,7 +166,7 @@ void EditorSettings::_get_property_list(List<PropertyInfo> *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