make ListHeader color independently customizable

This commit is contained in:
Drew Weymouth
2023-06-20 18:33:41 -07:00
parent c6fc76172a
commit ecffb81f72
5 changed files with 12 additions and 3 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ func NewListHeader(cols []ListColumn, layout *layouts.ColumnsLayout) *ListHeader
for i := range l.columnVisible {
l.columnVisible[i] = true
}
l.container = container.NewMax(myTheme.NewThemedRectangle(theme.ColorNameBackground), l.columnsContainer)
l.container = container.NewMax(myTheme.NewThemedRectangle(myTheme.ColorNameListHeader), l.columnsContainer)
l.ExtendBaseWidget(l)
l.buildColumns()
return l