From d6269e1bc08aed303f5c18d5abf6ddc93cdda6d7 Mon Sep 17 00:00:00 2001 From: lupoDharkael Date: Sat, 7 Sep 2019 15:54:53 +0200 Subject: [PATCH] Preserve group order in scene files --- scene/resources/resource_format_text.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/scene/resources/resource_format_text.cpp b/scene/resources/resource_format_text.cpp index cd229732ba..1c41f30a94 100644 --- a/scene/resources/resource_format_text.cpp +++ b/scene/resources/resource_format_text.cpp @@ -1713,6 +1713,7 @@ Error ResourceFormatSaverTextInstance::save(const String &p_path, const RES &p_r } if (groups.size()) { + groups.sort_custom(); String sgroups = " groups=[\n"; for (int j = 0; j < groups.size(); j++) { sgroups += "\"" + String(groups[j]).c_escape() + "\",\n";