diff options
Diffstat (limited to 'git.go')
| -rw-r--r-- | git.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -54,7 +54,7 @@ func (rs *RepoStatus) getLastTagVersion() string { // out = run(r.path, "git", "describe --tags c871d5ecf051a7dc4e3a77157cdbc0a457eb9ae1") out = run(rs.realPath.String(), "git", lastreal) rs.lasttag.SetValue(out) - rs.tagsDrop.SetText(out) + // rs.tagsDrop.SetText(out) // rs.lastLabel.SetText(out) return out } @@ -65,7 +65,7 @@ func (rs *RepoStatus) populateTags() { for _, tag := range listFiles(tmp) { if rs.tags[tag] == "" { log.Log(INFO, "populateTags() Adding new tag", tag) - rs.tagsDrop.AddText(tag) + // rs.tagsDrop.AddText(tag) rs.tags[tag] = "origin" } } |
