hammering on the GUI
This commit is contained in:
parent
2fafc0bd13
commit
7fb79a4736
|
@ -97,7 +97,7 @@ type patchSummary struct {
|
|||
dirtyOL *gadgets.OneLiner
|
||||
readonlyOL *gadgets.OneLiner
|
||||
rw *gadgets.OneLiner
|
||||
totalPatchesOL *gadgets.OneLiner
|
||||
// totalPatchesOL *gadgets.OneLiner
|
||||
// totalUserRepos *gui.Node
|
||||
// totalDevelRepos *gui.Node
|
||||
// totalMasterRepos *gui.Node
|
||||
|
@ -105,8 +105,8 @@ type patchSummary struct {
|
|||
// totalDevelPatches *gui.Node
|
||||
// totalMasterPatches *gui.Node
|
||||
// fileCount *gui.Node
|
||||
unknownOL *gadgets.BasicEntry
|
||||
unknownSubmitB *gui.Node
|
||||
// unknownOL *gadgets.BasicEntry
|
||||
// unknownSubmitB *gui.Node
|
||||
reason *gadgets.BasicEntry
|
||||
submitB *gui.Node
|
||||
// allp []*repolist.Patch
|
||||
|
@ -117,22 +117,17 @@ func (r *patchesWindow) submitPatchesBox(box *gui.Node) *patchSummary {
|
|||
group1 := box.NewGroup("Repo Summary")
|
||||
s.grid = group1.RawGrid()
|
||||
|
||||
// make the header table for repo stats
|
||||
s.totalOL = gadgets.NewOneLiner(s.grid, "Total")
|
||||
s.grid.NextRow()
|
||||
|
||||
s.dirtyOL = gadgets.NewOneLiner(s.grid, "dirty")
|
||||
// _ = s.grid.NewLabel("") // skip a column
|
||||
// s.totalUserRepos = s.grid.NewLabel("x go repos")
|
||||
s.grid.NextRow()
|
||||
|
||||
s.readonlyOL = gadgets.NewOneLiner(s.grid, "read-only")
|
||||
// _ = s.grid.NewLabel("") // skip a column
|
||||
s.grid.NextRow()
|
||||
|
||||
s.rw = gadgets.NewOneLiner(s.grid, "r/w")
|
||||
// _ = s.grid.NewLabel("") // skip a column
|
||||
s.grid.NextRow()
|
||||
|
||||
// make the 'widget group' for the buttons at the bottom of the window
|
||||
group1 = box.NewGroup("Patchset Create")
|
||||
s.grid = group1.RawGrid()
|
||||
|
||||
|
|
Loading…
Reference in New Issue