diff options
| author | Jeff Carr <[email protected]> | 2024-02-16 11:41:29 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-16 11:41:29 -0600 |
| commit | bd62a89a670eab24ff5fd7b1ed155b89dde08157 (patch) | |
| tree | 1c51c281bcdb04f7f383c0549db0a6bb17e9a8cc /draw.go | |
| parent | 88ca40bcfa11f464828cace14a07a9b59a00d571 (diff) | |
continue cleaning up original version
Diffstat (limited to 'draw.go')
| -rw-r--r-- | draw.go | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -19,7 +19,8 @@ func (rs *RepoStatus) drawGitStatus(box *gui.Node) { rs.path = gadgets.NewOneLiner(newgrid, "path") rs.goSrcPath = gadgets.NewOneLiner(newgrid, "~/go/src") rs.realPath = gadgets.NewOneLiner(newgrid, "full path") - rs.realPath.Hide() + rs.isGoLang = gadgets.NewOneLiner(newgrid, "Is GO Lang?") + rs.isGoLang.SetText("false") rs.mainWorkingName = gadgets.NewOneLiner(newgrid, "main working branch") rs.mainWorkingName.SetValue("???") rs.develWorkingName = gadgets.NewOneLiner(newgrid, "devel working branch") @@ -66,7 +67,7 @@ func (rs *RepoStatus) RunDevelMergeB() bool { log.Warn("RunDevelMergeB() SOMETHING WENT WRONG") return false } - rs.Update() + rs.UpdateNew() log.Warn("RunDevelMergeB() THINGS SEEM OK runGitCommands() returned true.") return true } @@ -80,7 +81,7 @@ func (rs *RepoStatus) runReleaseVersionB() bool { log.Warn("MAKING A RELEASE AND VERSION") if !rs.runGitCommands(true) { log.Warn("SOMETHING WENT WRONG") - rs.Update() + rs.UpdateNew() rs.Enable() return false } |
