Skip to content

Commit

Permalink
Fixed issue #84
Browse files Browse the repository at this point in the history
Forgot to add the VM description subitem before the path subitem since I added the Description column
  • Loading branch information
daviunic committed Nov 18, 2020
1 parent b776700 commit 11ab6c9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions 86BoxManager/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 11ab6c9

Please sign in to comment.