diff options
| author | Jeff Carr <[email protected]> | 2025-01-07 04:58:05 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-07 04:58:05 -0600 |
| commit | 904a5e8568b1e1640008a219dd1418a04c53bd7f (patch) | |
| tree | a7a9172ab01cc7c046964c78246e7d7630a969cc /branchesBox.go | |
| parent | 2ea1113c7211d09ee2637a00645f1b318fb855f8 (diff) | |
remove lots of old stuff!
Diffstat (limited to 'branchesBox.go')
| -rw-r--r-- | branchesBox.go | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/branchesBox.go b/branchesBox.go index a8be26b..7caa7d7 100644 --- a/branchesBox.go +++ b/branchesBox.go @@ -57,15 +57,17 @@ func (rs *RepoStatus) makeBranchesBox(parent *gui.Node) { newgrid.NextRow() rs.checkBranchesButton = newgrid.NewButton("CheckBranches()", func() { - if rs.CheckBranches() { - log.Log(WARN, "Branches are perfect") - } else { - log.Log(WARN, "Branches are not perfect") - } + /* + if rs.CheckBranches() { + log.Log(WARN, "Branches are perfect") + } else { + log.Log(WARN, "Branches are not perfect") + } + */ }) newgrid.NextRow() newgrid.NewButton("Revert master to devel", func() { - rs.RevertMasterToDevel() + // rs.RevertMasterToDevel() }) } |
