diff options
| author | Jeff Carr <[email protected]> | 2024-01-23 11:22:33 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-23 11:22:33 -0600 |
| commit | c408a7cca557f8e8933484cff20934564ec70d17 (patch) | |
| tree | c6d02efe74f4dbe2b080189bf6d9ba44f1eefdf0 /repolist.go | |
| parent | b4f1bf383600dd96491b13deb13fbed9e6be4cad (diff) | |
working towards global branch settings
repostatus improvements
common branch handling
scan all repos
code cleanups
check dirty before global delete
go mod using a quieter gui
smarter scripting
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'repolist.go')
| -rw-r--r-- | repolist.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/repolist.go b/repolist.go index 15b2728..2021aa7 100644 --- a/repolist.go +++ b/repolist.go @@ -43,8 +43,6 @@ func myrepolist() []string { func (r *repo) Hide() { r.pLabel.Hide() - r.pButton.Hide() - r.cButton.Hide() r.lastTag.Hide() r.vLabel.Hide() @@ -53,14 +51,12 @@ func (r *repo) Hide() { r.userVersion.Hide() r.dirtyLabel.Hide() - r.showButton.Hide() + r.statusButton.Hide() r.hidden = true } func (r *repo) Show() { r.pLabel.Show() - r.pButton.Show() - r.cButton.Show() r.lastTag.Show() r.vLabel.Show() @@ -69,6 +65,6 @@ func (r *repo) Show() { r.userVersion.Show() r.dirtyLabel.Show() - r.showButton.Show() + r.statusButton.Show() r.hidden = false } |
