From 1dd344b2f8a3e50e59cf3e0238f02fcf44707018 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 26 Jun 2014 03:49:47 -0400 Subject: Fixed Space() causing panics during size calculations. --- stack.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'stack.go') diff --git a/stack.go b/stack.go index 4311b37..c534ff2 100644 --- a/stack.go +++ b/stack.go @@ -133,7 +133,11 @@ _=ymargin if current != nil { // connect first left to first right current.neighbor = c } - current = as[0] // next left is first subwidget + if len(as) != 0 { + current = as[0] // next left is first subwidget + } else { + current = nil // spaces don't have allocation data + } } allocations = append(allocations, as...) if s.orientation == horizontal { -- cgit v1.2.3