diff options
| author | Jeff Carr <[email protected]> | 2024-01-13 23:29:27 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-13 23:29:27 -0600 |
| commit | 0d49ed20ac2d27d6de0881d00ea1a366be8263d6 (patch) | |
| tree | e9d588e43dc49354da1b30366ce2965ae2db9026 /draw.go | |
| parent | 6223ffe7bf68868e92e9c0486b5ad4f5afbc2748 (diff) | |
allow branch namesv0.12.1
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'draw.go')
| -rw-r--r-- | draw.go | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -24,7 +24,7 @@ func draw(rs *RepoStatus) { rs.drawGitCommands() // figure out what the state of the git repository is - rs.Update() + // rs.Update() } func (rs *RepoStatus) drawGitBranches() { @@ -48,13 +48,15 @@ func (rs *RepoStatus) drawGitBranches() { master = "main" } } - rs.masterDrop.Set(master) + // rs.masterDrop.Set(master) // relabel the various gadgets with the right branch name rs.masterBranchVersion.SetLabel(master) - rs.major.SetTitle(master) + // rs.major.SetTitle(master) + /* rs.develDrop.Set("devel") rs.userDrop.Set("jcarr") + */ var count *gui.Node |
