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:
Tim Culverhouse 2022-09-19 19:20:32 -05:00 committed by Robin Jarry
parent a31606db0d
commit a91009edf7
1 changed files with 6 additions and 2 deletions

View File

@ -134,7 +134,9 @@ func (grid *Grid) Draw(ctx *Context) {
continue
}
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.mutex.RLock()
for _, cell := range grid.cells {
cell.Content.Invalidate()
if cell.Content != nil {
cell.Content.Invalidate()
}
}
grid.mutex.RUnlock()
}