mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-05 13:37:06 +00:00
Colons are now removed when using the edit all entries function
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user