summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-05-23 15:32:09 -0700
committerJeff Carr <[email protected]>2019-05-23 15:32:09 -0700
commitcc5fc8d6a53454e81fda033575eb19ec0a2968dd (patch)
treef7a0b52b47af81f0c3b08e7d59bf25f52a3a5b74
parent963a910a436a8afa9f2bd510075a06438a77ebbf (diff)
more bg color debugging
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--tableCallbacks.go3
1 files changed, 3 insertions, 0 deletions
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)
}