summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-16 11:14:30 -0600
committerJeff Carr <[email protected]>2024-01-16 11:14:30 -0600
commit0dd8cd9deaf2e8b1ac2537dfcefd76ac484e35e8 (patch)
tree100d530a86a72c47b3db210488aab0e7e11adb3a /structs.go
parenta85b161d64bffec1cc241cf1e961a28251b2b570 (diff)
add Global Display Options
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/structs.go b/structs.go
index 23b845a..afa16af 100644
--- a/structs.go
+++ b/structs.go
@@ -19,6 +19,7 @@ var me repoType
type repoType struct {
script [][]string
toMoveToBranch string // what the current working branch name is
+ autoHidePerfect *gui.Node
mainBranch *gadgets.BasicCombobox
develBranch *gadgets.BasicCombobox
@@ -32,6 +33,7 @@ var dryrun *gui.Node
var allrepos []*repo
type repo struct {
+ hidden bool
path string
lasttagrev string
lasttag string
@@ -53,6 +55,7 @@ type repo struct {
cButton *gui.Node // commit button
pButton *gui.Node // push button
+ showButton *gui.Node // the button!
status *repostatus.RepoStatus
}