diff options
Diffstat (limited to 'tableWindow.go')
| -rw-r--r-- | tableWindow.go | 14 |
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) |
