summaryrefslogtreecommitdiff
path: root/tableWindow.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-15 04:12:27 -0600
committerJeff Carr <[email protected]>2025-02-15 07:28:36 -0600
commit875da60adb56ba8b88301d19f19b3b7fac2d88c0 (patch)
tree1e43e9ab32ddd179725074a49deb818bfc04252e /tableWindow.go
parent25bc18c55f58949e5765b73af8b61ede8ac5eb12 (diff)
adds machines to table
Diffstat (limited to 'tableWindow.go')
-rw-r--r--tableWindow.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/tableWindow.go b/tableWindow.go
index 8ec1439..17c7cfa 100644
--- a/tableWindow.go
+++ b/tableWindow.go
@@ -81,13 +81,13 @@ func makeTableWindow() *tableWindow {
// make a grid to put the list of git repos that have patches
// in this particular patchset
- grid = g.NewGrid("", 0, 0)
- grid.NewLabel("repo")
- grid.NewLabel("patch name")
- grid.NewLabel("Applied in current branch?")
- grid.NewLabel("start hash")
- grid.NewLabel("")
- grid.NextRow()
+ pw.grid = g.NewGrid("", 0, 0)
+ pw.grid.NewLabel("repo")
+ pw.grid.NewLabel("patch name")
+ pw.grid.NewLabel("Applied in current branch?")
+ pw.grid.NewLabel("start hash")
+ pw.grid.NewLabel("")
+ pw.grid.NextRow()
// add the patches to the grid
// pw.addPatchset(grid, pset)