summaryrefslogtreecommitdiff
path: root/viewAutotypist.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-18 10:49:52 -0600
committerJeff Carr <[email protected]>2024-02-18 10:49:52 -0600
commit02542bafe8f570d04a946851a4c993f3f4de6e18 (patch)
tree4b3f17953e58b8bd84dff4ea4c089b602c7a1d7f /viewAutotypist.go
parent860981e63d535cfed566ac831fc9fd130b1b03fb (diff)
add guireleaser view
Diffstat (limited to 'viewAutotypist.go')
-rw-r--r--viewAutotypist.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/viewAutotypist.go b/viewAutotypist.go
index 9753bce..b549701 100644
--- a/viewAutotypist.go
+++ b/viewAutotypist.go
@@ -10,6 +10,7 @@ func AutotypistView(parent *gui.Node) *RepoList {
}
me = new(RepoList)
me.allrepos = make(map[string]*Repo)
+ me.viewName = "autotypist"
// me.reposbox = gui.RawBox()
me.reposbox = parent
@@ -25,5 +26,6 @@ func AutotypistView(parent *gui.Node) *RepoList {
me.reposgrid.NewLabel("Status")
me.reposgrid.NewLabel("Current Version").SetProgName("Current Version")
me.reposgrid.NextRow()
+ me.blind = gui.RawBox()
return me
}