fix VM display tab
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
93cb952910
commit
7c420444d0
|
@ -111,9 +111,10 @@ func showVmMouseClick(b *gui.GuiButton) {
|
|||
func createVmBox(gw *gui.GuiWindow, vm *pb.Event_VM) {
|
||||
log.Println("CreateVmBox() START vm.Name =", vm.Name)
|
||||
|
||||
txt := "createVmBox() " + vm.Name
|
||||
txt := "VM " + vm.Name
|
||||
gw = gui.InitGuiWindow(txt, gw)
|
||||
box := gui.HardBox(gw, gui.Xaxis, txt)
|
||||
box := gui.HardBox(gw, gui.Yaxis, txt)
|
||||
box = gui.HardBox(gw, gui.Xaxis, txt)
|
||||
|
||||
// Add hostname entry box
|
||||
gui.MakeEntryVbox(box, "hostname:", vm.Hostname, true, "Hostname")
|
||||
|
|
Loading…
Reference in New Issue