From 2bc6db65c14f00de5a0349e910037ca2db7fc103 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Fri, 24 Nov 2017 18:43:52 -0300 Subject: [PATCH] Fixes bug where enumeration is not being saved --- editor/doc/doc_data.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/doc/doc_data.cpp b/editor/doc/doc_data.cpp index bfee66569a7..a44830ef80e 100644 --- a/editor/doc/doc_data.cpp +++ b/editor/doc/doc_data.cpp @@ -1081,9 +1081,9 @@ Error DocData::save_classes(const String &p_default_path, const Map"); - } else { _write_string(f, 2, ""); + } else { + _write_string(f, 2, ""); } _write_string(f, 3, k.description.strip_edges().xml_escape()); _write_string(f, 2, "");