color test for macos & windows

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-05-23 13:57:24 -07:00
parent 87ee1e2be2
commit 56f987916c
1 changed files with 2 additions and 1 deletions

View File

@ -69,7 +69,8 @@ func ReadReceivedData(data *pb.Event, mh *gui.TableData) {
if (row % 2) == 1 {
mh.Rows[row].HumanData[0].Color = color.RGBA{100, 100, 100, 142} // makes the background of each other row grey
} else {
mh.Rows[row].HumanData[0].Color = color.RGBA{0, 0, 0, 142}
// mh.Rows[row].HumanData[0].Color = color.RGBA{0, 0, 0, 142}
// mh.Rows[row].HumanData[0].Color = nil
}
mh.Rows[row].HumanData[1].Text = item.Name
mh.Rows[row].HumanData[1].Color = color.RGBA{0, 0, 0, 0}