more bg color debugging

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-05-23 15:32:09 -07:00
parent 963a910a43
commit cc5fc8d6a5
1 changed files with 3 additions and 0 deletions

View File

@ -58,6 +58,9 @@ func (mh *TableData) CellValue(m *ui.TableModel, row, column int) ui.TableValue
log.Println("CellValue() is BG COLOR row, column =", row, column)
return nil
}
bgcolor := libuiColorToGOlangColor(mh.Rows[row].HumanData[humanID].Color)
log.Println("CellValue() BGCOLOR =", bgcolor)
return bgcolor
}
return libuiColorToGOlangColor(mh.Rows[row].HumanData[humanID].Color)
}