diff options
| author | Jeff Carr <[email protected]> | 2025-10-21 04:48:14 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-21 04:48:14 -0500 |
| commit | 19cbfa7a819607e2602d48617ce9e96797fa6e1a (patch) | |
| tree | 3ea6ba8804b4ad9b03c6a95e4f09e317dcf237dc /doGui.go | |
| parent | 898592febc56eb1073525636666063396d85aca6 (diff) | |
trying to get this to run again
Diffstat (limited to 'doGui.go')
| -rw-r--r-- | doGui.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,10 +28,10 @@ func doGui() { grid := win.Group.RawGrid() if config.True("PathLock") { me.goSrcPwd = gadgets.NewOneLiner(grid, "Working Directory") - me.goSrcPwd.SetText(config.Get("ReposDir")) + me.goSrcPwd.SetText(config.Get("gopath")) } else { me.goSrcEdit = gadgets.NewBasicEntry(grid, "Working Directory") - me.goSrcEdit.SetText(config.Get("ReposDir")) + me.goSrcEdit.SetText(config.Get("gopath")) me.goSrcEdit.Custom = func() { log.Info("updating text to", me.goSrcEdit.String()) } |
