From 3595885818dca19f20b265f5450f68875c4e23c5 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 28 May 2019 16:37:46 -0700 Subject: [PATCH] do colors for windows again Signed-off-by: Jeff Carr --- tableCallbacks.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tableCallbacks.go b/tableCallbacks.go index 6b9d2eb..d2eb3cb 100644 --- a/tableCallbacks.go +++ b/tableCallbacks.go @@ -56,10 +56,10 @@ func (mh *TableData) CellValue(m *ui.TableModel, row, column int) ui.TableValue if (column == mh.Human[humanID].ColorID) { if (column == 0) { // ignore BG color on windows for now - if (runtime.GOOS == "windows") { - log.Println("CellValue() is BG COLOR row, column =", row, column) - return nil - } + //if (runtime.GOOS == "windows") { + // log.Println("CellValue() is BG COLOR row, column =", row, column) + // return nil + //} bgcolor := libuiColorToGOlangColor(mh.Rows[row].HumanData[humanID].Color) if (Data.Debug) { log.Println("CellValue() BGCOLOR =", bgcolor)