From 7c420444d00d153778133fa423b56e77cbc2859d Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 3 Jun 2019 14:53:45 -0700 Subject: [PATCH] fix VM display tab Signed-off-by: Jeff Carr --- gui-vmPage.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gui-vmPage.go b/gui-vmPage.go index 5f4bc31..31af678 100644 --- a/gui-vmPage.go +++ b/gui-vmPage.go @@ -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")