grid: protect calls to cell.Content
Many panics occur from calling Draw on a nil widget, stemming from the grid ui element. Protect the calls to Draw from within grid to prevent this method of panic. Signed-off-by: Tim Culverhouse <tim@timculverhouse.com> Acked-by: Robin Jarry <robin@jarry.cc>
This commit is contained in:
parent
a31606db0d
commit
a91009edf7
1 changed files with 6 additions and 2 deletions
|
@ -134,7 +134,9 @@ func (grid *Grid) Draw(ctx *Context) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
subctx := ctx.Subcontext(x, y, width, height)
|
subctx := ctx.Subcontext(x, y, width, height)
|
||||||
cell.Content.Draw(subctx)
|
if cell.Content != nil {
|
||||||
|
cell.Content.Draw(subctx)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -230,7 +232,9 @@ func (grid *Grid) Invalidate() {
|
||||||
grid.invalidateLayout()
|
grid.invalidateLayout()
|
||||||
grid.mutex.RLock()
|
grid.mutex.RLock()
|
||||||
for _, cell := range grid.cells {
|
for _, cell := range grid.cells {
|
||||||
cell.Content.Invalidate()
|
if cell.Content != nil {
|
||||||
|
cell.Content.Invalidate()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
grid.mutex.RUnlock()
|
grid.mutex.RUnlock()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue