Remove empty line

This commit is contained in:
Roi Martin 2017-08-16 00:58:08 +02:00
parent e18bedd405
commit 7e8dafc560

1
gui.go
View File

@ -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]