diff options
| author | Jeff Carr <[email protected]> | 2024-02-02 17:08:59 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-02 17:08:59 -0600 |
| commit | 7c354324bb39a7b0d89b5ce65be720baae2fde88 (patch) | |
| tree | 703ff5487b6931ff7f83a8395fa4d740f70a89a8 | |
| parent | bf9cb7c4186b47fca840558318b906abf8394a68 (diff) | |
show/hide target version label
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | repolist.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/repolist.go b/repolist.go index fdcbb81..cb48e7a 100644 --- a/repolist.go +++ b/repolist.go @@ -51,6 +51,7 @@ func (r *repo) Hide() { r.pLabel.Hide() r.lastTag.Hide() r.vLabel.Hide() + r.targetVersion.Hide() r.dirtyLabel.Hide() r.goSumStatus.Hide() @@ -62,6 +63,7 @@ func (r *repo) Show() { r.pLabel.Show() r.lastTag.Show() r.vLabel.Show() + r.targetVersion.Show() r.dirtyLabel.Show() r.goSumStatus.Show() |
