summaryrefslogtreecommitdiff
path: root/branchesBox.go
diff options
context:
space:
mode:
Diffstat (limited to 'branchesBox.go')
-rw-r--r--branchesBox.go14
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()
})
}