From 615ffb350702976983a6b5d1df0847d07b99e121 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 25 Jun 2019 12:57:35 +0200 Subject: doctool: Fix writing theme_item descriptions We already had support for parsing and saving theme_item descriptions in DocData, and displaying it in the editor, but doctool would drop the changes as it was not writing them back to the XML. Part of #29868. --- editor/doc/doc_data.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'editor/doc/doc_data.cpp') diff --git a/editor/doc/doc_data.cpp b/editor/doc/doc_data.cpp index 7d2159d365..041f81d063 100644 --- a/editor/doc/doc_data.cpp +++ b/editor/doc/doc_data.cpp @@ -1126,6 +1126,7 @@ Error DocData::save_classes(const String &p_default_path, const Map"); + _write_string(f, 3, p.description.strip_edges().xml_escape()); _write_string(f, 2, ""); } _write_string(f, 1, ""); -- cgit v1.2.3