From 7e8dafc5609b097df827f363ced2c2d657563404 Mon Sep 17 00:00:00 2001 From: Roi Martin Date: Wed, 16 Aug 2017 00:58:08 +0200 Subject: [PATCH] Remove empty line --- gui.go | 1 - 1 file changed, 1 deletion(-) diff --git a/gui.go b/gui.go index 2064aca..e778a78 100644 --- a/gui.go +++ b/gui.go @@ -194,7 +194,6 @@ func (g *Gui) View(name string) (*View, error) { // ViewByPosition returns a pointer to a view matching the given position, or // error ErrUnknownView if a view in that position does not exist. func (g *Gui) ViewByPosition(x, y int) (*View, error) { - // traverse views in reverse order checking top views first for i := len(g.views); i > 0; i-- { v := g.views[i-1]