diff options
| author | Jeff Carr <[email protected]> | 2025-09-03 05:50:18 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-03 05:50:18 -0500 |
| commit | 30dcc8af9f35ed988b79d39121801d3a27a036c2 (patch) | |
| tree | cfcf83dbf917175d40da3531396ef9462c0ae9a8 /windowPatchsets.go | |
| parent | 557a5853a4f77f340697a91f521b02c2034f1a09 (diff) | |
working on patch handling
Diffstat (limited to 'windowPatchsets.go')
| -rw-r--r-- | windowPatchsets.go | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/windowPatchsets.go b/windowPatchsets.go index 4b102b2..29a2929 100644 --- a/windowPatchsets.go +++ b/windowPatchsets.go @@ -36,6 +36,7 @@ func (w *stdPatchsetTableWin) Toggle() { w.win.Toggle() } +/* func loadUpstreamPatchsets() { psets, err := me.forge.GetPatchesets() if err != nil { @@ -66,6 +67,7 @@ func loadUpstreamPatchsets() { savePatchsets() } } +*/ func makePatchsetsWin() *stdPatchsetTableWin { dwin := new(stdPatchsetTableWin) @@ -84,10 +86,12 @@ func makePatchsetsWin() *stdPatchsetTableWin { dwin.doPatchsetsTable(me.psets) }) - grid.NewButton("upstream", func() { - loadUpstreamPatchsets() - dwin.doPatchsetsTable(me.psets) - }) + /* + grid.NewButton("upstream", func() { + loadUpstreamPatchsets() + dwin.doPatchsetsTable(me.psets) + }) + */ grid.NewButton("save", func() { if me.psets == nil { |
