diff options
| author | Jeff Carr <[email protected]> | 2024-01-16 11:56:55 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-16 11:56:55 -0600 |
| commit | 6a34c69970cc98c76ee5f94428047d6a2e11c353 (patch) | |
| tree | e874880e0280462b0bd7b7de2ad32d9e350b7d42 /structs.go | |
| parent | 0dd8cd9deaf2e8b1ac2537dfcefd76ac484e35e8 (diff) | |
global window opens and closes repo window
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -18,12 +18,26 @@ var me repoType type repoType struct { script [][]string - toMoveToBranch string // what the current working branch name is + + // #### autotypist window + autotypistWindow *gadgets.BasicWindow + // #### autotypist Global Display Options autoHidePerfect *gui.Node + // #### autotypist Global Build Options + // what to change all the branches to + // so, as a developer, you can move all the repos + // to the 'devel' branch and then test a devel branch build + // then switch back to your 'username' branch and do a build there + toMoveToBranch string + + // displays the preferred names used for the repo tree state mainBranch *gadgets.BasicCombobox develBranch *gadgets.BasicCombobox userBranch *gadgets.BasicCombobox + + // #### autotypist Global Distructive & Reset Options + // #### autotypist window end } var cmds *gui.Node |
