summaryrefslogtreecommitdiff
path: root/doGui.go
diff options
context:
space:
mode:
Diffstat (limited to 'doGui.go')
-rw-r--r--doGui.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/doGui.go b/doGui.go
index f2b1973..504a92e 100644
--- a/doGui.go
+++ b/doGui.go
@@ -145,6 +145,7 @@ func drawWindow(win *gadgets.BasicWindow) {
default:
me.argvCheckoutUser = true
}
+ log.Info("forged changed to default:", me.newBranch.String())
}
// checking this will automatically make the branches off of devel
@@ -176,6 +177,17 @@ func drawWindow(win *gadgets.BasicWindow) {
patchWin.Show()
})
+ var foundWin *foundWindow
+ grid.NewButton("Search Repos", func() {
+ if foundWin != nil {
+ foundWin.Toggle()
+ return
+ }
+ foundWin = new(foundWindow)
+ foundWin.initWindow()
+ foundWin.Show()
+ })
+
grid.NewButton("forge ConfigSave()", func() {
me.forge.ConfigSave()
})