diff options
| author | Jeff Carr <[email protected]> | 2019-05-13 00:30:38 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-05-13 00:30:38 -0700 |
| commit | 5ec1416d20f874fe0ef01b9f33ba86dbe5960435 (patch) | |
| tree | d13316484d9a525b6b75f96180e3b1ae4c4c91d1 /table.go | |
| parent | f3eeb4e9ec6160552f3213eea2d6f2442bc90e89 (diff) | |
combined table column init
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'table.go')
| -rw-r--r-- | table.go | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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) { |
