mirror of
https://github.com/godotengine/godot.git
synced 2025-02-17 22:43:01 +08:00
project history was not being saved after a recent fix, this should fix it
This commit is contained in:
parent
c1056a9bfb
commit
d911203829
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user