Colons are now removed when using the edit all entries function

This commit is contained in:
MattNL
2023-04-25 19:40:16 -04:00
parent 35fb42ecaa
commit ffbb8fa578

View File

@@ -2179,7 +2179,7 @@ namespace PckStudio
int idx = line.IndexOf(' ');
if (idx == -1 || line.Length - 1 == idx)
continue;
file.Properties.Add((line.Substring(0, idx), line.Substring(idx + 1)));
file.Properties.Add((line.Substring(0, idx).Replace(":", string.Empty), line.Substring(idx + 1)));
}
ReloadMetaTreeView();
if (IsSubPCKNode(node.FullPath)) RebuildSubPCK(node);