From cc5fc8d6a53454e81fda033575eb19ec0a2968dd Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 23 May 2019 15:32:09 -0700 Subject: [PATCH] more bg color debugging Signed-off-by: Jeff Carr --- tableCallbacks.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tableCallbacks.go b/tableCallbacks.go index 62c9692..ea78d44 100644 --- a/tableCallbacks.go +++ b/tableCallbacks.go @@ -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) }