summaryrefslogtreecommitdiff
path: root/table.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-05-13 00:30:38 -0700
committerJeff Carr <[email protected]>2019-05-13 00:30:38 -0700
commit5ec1416d20f874fe0ef01b9f33ba86dbe5960435 (patch)
treed13316484d9a525b6b75f96180e3b1ae4c4c91d1 /table.go
parentf3eeb4e9ec6160552f3213eea2d6f2442bc90e89 (diff)
combined table column init
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'table.go')
-rw-r--r--table.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/table.go b/table.go
index 005c893..1833105 100644
--- a/table.go
+++ b/table.go
@@ -46,11 +46,9 @@ type TableData struct {
RowWidth int // This is how wide each row is
Rows []RowData // This is all the table data by row
generatedColumnTypes []ui.TableValue // generate this dynamically
- // libUIevent func(*TableData, *ui.TableModel, int, int, ui.TableValue)
- cellChangeEvent func(int, int, ui.TableValue)
- Cells [20]CellData
- Human [20]HumanMap
+ Cells [20]CellData
+ Human [20]HumanMap
}
func initRowBTcolor(mh *TableData, intBG int, cell InputData) {