Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit dfbb94f

Browse files
committed
AddIn Scout: Add Label column
1 parent 24eb15f commit dfbb94f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/AddIns/Misc/AddinScout/Project/Src/Gui/CodonListPanel.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public CodonListPanel()
5454
CodonLV.Columns.Add("Codon ID", 175,HorizontalAlignment.Left);
5555
CodonLV.Columns.Add("Codon Class", 400,HorizontalAlignment.Left);
5656
CodonLV.Columns.Add("Codon Condition -> Action on Fail", 600,HorizontalAlignment.Left);
57+
CodonLV.Columns.Add("Label", 450, HorizontalAlignment.Left);
5758

5859
ExtTextBox.Text = "Extension : ";
5960
ExtTextBox.ReadOnly = true;
@@ -107,6 +108,7 @@ public void ListCodons(string path)
107108
lvi.SubItems.Add(c.Properties.Contains("class") ? c.Properties["class"] : "");
108109

109110
lvi.SubItems.Add(string.Join(";", c.Conditions.Select(a => a.Name + ": " + a.Action)));
111+
lvi.SubItems.Add(c.Properties.Contains("label") ? c.Properties["label"] : "");
110112
CodonLV.Items.Add(lvi);
111113
}
112114
}

0 commit comments

Comments
 (0)