diff options
| author | Jeff Carr <[email protected]> | 2024-01-30 16:48:40 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-30 16:48:40 -0600 |
| commit | c34090e798b3492123eb5026a0ff6e565507f527 (patch) | |
| tree | a82bf4b289a991821c3cf2c1c9638164bb3070e1 /repolist.go | |
| parent | a3a1c09005f2092efae0b9704ea415e5df1c196f (diff) | |
whitelist is working
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'repolist.go')
| -rw-r--r-- | repolist.go | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/repolist.go b/repolist.go index a03e247..069efc2 100644 --- a/repolist.go +++ b/repolist.go @@ -177,20 +177,14 @@ func addRepo(grid *gui.Node, path string, master string, devel string, user stri } log.Warn("status window exists. trying TestDraw() here") newRepo.status.Toggle() - /// newRepo.status.Update() + setCurrentRepo(newRepo, "manually chosen", "notsure") + // newRepo.status.Update() }) - // newRepo.status = repostatus.New(me.myGui, newRepo.path) newRepo.status = repostatus.NewRepoStatusWindow(newRepo.path) newRepo.hidden = false newRepo.status.SetMainWorkingName(master) newRepo.status.SetDevelWorkingName(devel) newRepo.status.SetUserWorkingName(user) - /* - newRepo.status.SetDevelBranchName(devel) - newRepo.status.SetUserBranchName(user) - newRepo.status.Update() - newRepo.newScan() - */ me.allrepos[path] = newRepo } |
