diff options
| author | Pietro Gagliardi <[email protected]> | 2014-10-16 16:20:09 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-10-16 16:20:09 -0400 |
| commit | fa67147f5477f2cbcb0ba4dd511907ea8cda723a (patch) | |
| tree | 72316404d04aae5c359fc89a7323311942170e8e /newctrl/simplegrid.go | |
| parent | 229ffd37b22c2d122fec5e668cec9e2b52b2730e (diff) | |
Forgot to size Grid and SimpleGrid's container properly. Fixed.
Diffstat (limited to 'newctrl/simplegrid.go')
| -rw-r--r-- | newctrl/simplegrid.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newctrl/simplegrid.go b/newctrl/simplegrid.go index ac1f0ee..1cc3c55 100644 --- a/newctrl/simplegrid.go +++ b/newctrl/simplegrid.go @@ -118,6 +118,7 @@ func (g *simpleGrid) resize(x int, y int, width int, height int, d *sizing) { return b } + g.container.resize(x, y, width, height, d) if len(g.controls) == 0 { return } |
