From 55894b4a5e76c42f2635a1b69b3a928dcffe8383 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sun, 16 Jun 2019 10:28:31 +1000 Subject: [PATCH] test --- pkg/gui/layout.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pkg/gui/layout.go b/pkg/gui/layout.go index e83e8ced..c26087c2 100644 --- a/pkg/gui/layout.go +++ b/pkg/gui/layout.go @@ -173,8 +173,6 @@ func (gui *Gui) layout(g *gocui.Gui) error { servicesView.Highlight = true servicesView.Title = gui.Tr.ServicesTitle servicesView.FgColor = gocui.ColorWhite - - gui.focusPoint(0, gui.State.Panels.Services.SelectedLine, len(gui.DockerCommand.Services), servicesView) } } @@ -190,8 +188,6 @@ func (gui *Gui) layout(g *gocui.Gui) error { containersView.Title = gui.Tr.StandaloneContainersTitle } containersView.FgColor = gocui.ColorWhite - - gui.focusPoint(0, gui.State.Panels.Containers.SelectedLine, len(gui.DockerCommand.Containers), containersView) } imagesView, err := g.SetViewBeneath("images", "containers", vHeights["images"]) @@ -202,8 +198,6 @@ func (gui *Gui) layout(g *gocui.Gui) error { imagesView.Highlight = true imagesView.Title = gui.Tr.ImagesTitle imagesView.FgColor = gocui.ColorWhite - - gui.focusPoint(0, gui.State.Panels.Images.SelectedLine, len(gui.DockerCommand.Images), imagesView) } volumesView, err := g.SetViewBeneath("volumes", "images", vHeights["volumes"]) @@ -214,8 +208,6 @@ func (gui *Gui) layout(g *gocui.Gui) error { volumesView.Highlight = true volumesView.Title = gui.Tr.VolumesTitle volumesView.FgColor = gocui.ColorWhite - - gui.focusPoint(0, gui.State.Panels.Images.SelectedLine, len(gui.DockerCommand.Images), volumesView) } if v, err := g.SetView("options", appStatusOptionsBoundary-1, height-2, optionsVersionBoundary-1, height, 0); err != nil {