From 8af6410978900b92341f341db26bb80895cbe15b Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 23 Feb 2024 19:29:43 -0600 Subject: [PATCH] stub in a button for this --- submitPatches.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/submitPatches.go b/submitPatches.go index 5eeda72..9092efc 100644 --- a/submitPatches.go +++ b/submitPatches.go @@ -149,7 +149,7 @@ func submitPatchesBox(box *gui.Node) *patchSummary { s.submitB.Disable() } } - s.submitB = s.grid.NewButton("Submit Patches", func() { + s.submitB = s.grid.NewButton("Create Patch Set", func() { dirname := "submit-patchset.quilt" patchdir := filepath.Join(me.userHomePwd.String(), dirname) if shell.Exists(patchdir) { @@ -163,6 +163,9 @@ func submitPatchesBox(box *gui.Node) *patchSummary { } me.repos.View.MakePatchset(patchdir) }) + s.submitB = s.grid.NewButton("Submit quilt", func() { + log.Info("do a submit here") + }) // disable these until there are not dirty repos s.reason.Disable() s.submitB.Disable()