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()