From f7947b08b69b1a2f02168de511e7c8b005035221 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 14 Feb 2024 00:09:58 -0600 Subject: code reorg and clean Signed-off-by: Jeff Carr --- git.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git.go') diff --git a/git.go b/git.go index 0ddea8c..7580062 100644 --- a/git.go +++ b/git.go @@ -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" } } -- cgit v1.2.3