1
0
mirror of synced 2025-01-31 04:13:51 +01:00

Quick fix for loading the node types for dictionaries properly

This commit is contained in:
KillzXGaming 2019-05-17 20:02:42 -04:00
parent 6fb7eec6be
commit c67f3b8787
3 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -180,7 +180,7 @@ namespace FirstPlugin
ListViewItem item = new ListViewItem(NameText);
item.SubItems.Add(TypeString);
item.SubItems.Add(ValueText);
if (node[k] != null) item.Tag = new EditableNode(node);
if (node[k] != null) item.Tag = new EditableNode(node[k]);
listViewCustom1.Items.Add(item);
}