From bd95ba97368f493702bc72af7b66dc208f61e94c Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 24 Apr 2024 17:51:25 -0400 Subject: [PATCH] added break to get out faster --- xLights/models/Model.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/xLights/models/Model.cpp b/xLights/models/Model.cpp index a1150494a..4b07a067e 100644 --- a/xLights/models/Model.cpp +++ b/xLights/models/Model.cpp @@ -6685,6 +6685,7 @@ wxString Model::SerialiseAliases() const { wxString s = stream.GetString(); s = s.SubString(s.Find("\n") + 1, s.Length()); // skip over xml format header alias += s; + break; } child = child->GetNext(); }