summaryrefslogtreecommitdiff
path: root/new.go
diff options
context:
space:
mode:
Diffstat (limited to 'new.go')
-rw-r--r--new.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/new.go b/new.go
index d722136..6242987 100644
--- a/new.go
+++ b/new.go
@@ -1,20 +1,20 @@
package repostatus
-import (
- "go.wit.com/log"
+import (
"go.wit.com/gui/gui"
- "go.wit.com/gui/gadgets"
+ "go.wit.com/lib/gadgets"
+ "go.wit.com/log"
)
func New(p *gui.Node, path string) *RepoStatus {
- rs := &RepoStatus {
- hidden: true,
- ready: false,
- parent: p,
+ rs := &RepoStatus{
+ hidden: true,
+ ready: false,
+ parent: p,
repopath: path,
}
rs.tags = make(map[string]string)
- rs.window = gadgets.NewBasicWindow(p, "GO Repo Details " + path)
+ rs.window = gadgets.NewBasicWindow(p, "GO Repo Details "+path)
rs.window.Horizontal()
rs.window.Make()
rs.ready = true