no longer merge to master here

This commit is contained in:
Jeff Carr 2025-01-07 03:23:35 -06:00
parent fd592e8222
commit 73c3969731
1 changed files with 3 additions and 1 deletions

View File

@ -89,7 +89,7 @@ func (r *repoWindow) repoMenu() *gui.Node {
log.Info("filter dirty =", dirty.Checked())
}
box2.NewButton("merge it all", func() {
box2.NewButton("merge user to devel", func() {
r.Disable()
if IsAnythingDirty() {
log.Info("You can't apply patches when repos are dirty")
@ -99,9 +99,11 @@ func (r *repoWindow) repoMenu() *gui.Node {
if !r.mergeAllUserToDevel() {
return
}
/* no longer do this here! yay! long live forge
if !r.mergeAllDevelToMain() {
return
}
*/
r.Enable()
})