From 11ab6c91db5e6067d0c754b644e024b6dea28ffd Mon Sep 17 00:00:00 2001 From: daviunic Date: Wed, 18 Nov 2020 10:44:46 +0100 Subject: [PATCH] Fixed issue #84 Forgot to add the VM description subitem before the path subitem since I added the Description column --- 86BoxManager/frmMain.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/86BoxManager/frmMain.cs b/86BoxManager/frmMain.cs index d19c348..a5ab0fc 100644 --- a/86BoxManager/frmMain.cs +++ b/86BoxManager/frmMain.cs @@ -1622,6 +1622,7 @@ public void VMImport(string name, string desc, string importPath, bool openCFG, ImageIndex = 0 }; newLvi.SubItems.Add(new ListViewItem.ListViewSubItem(newLvi, newVM.GetStatusString())); + newLvi.SubItems.Add(new ListViewItem.ListViewSubItem(newLvi, newVM.Desc)); newLvi.SubItems.Add(new ListViewItem.ListViewSubItem(newLvi, newVM.Path)); lstVMs.Items.Add(newLvi); Directory.CreateDirectory(cfgpath + newVM.Name);