diff options
| author | Jeff Carr <[email protected]> | 2024-01-16 11:14:30 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-16 11:14:30 -0600 |
| commit | 0dd8cd9deaf2e8b1ac2537dfcefd76ac484e35e8 (patch) | |
| tree | 100d530a86a72c47b3db210488aab0e7e11adb3a /structs.go | |
| parent | a85b161d64bffec1cc241cf1e961a28251b2b570 (diff) | |
add Global Display Options
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 } |
