From 1248e21394afa41f5a5a42e843c3bd4cae71c5d6 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 11 Jan 2024 15:56:50 -0600 Subject: update for new gui API Signed-off-by: Jeff Carr --- new.go | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) (limited to 'new.go') diff --git a/new.go b/new.go index c18480e..3142011 100644 --- a/new.go +++ b/new.go @@ -1,8 +1,6 @@ package repostatus import ( - "go.wit.com/log" - "go.wit.com/gui/gui" "go.wit.com/gui/gadgets" ) @@ -15,21 +13,7 @@ func New(p *gui.Node, path string) *RepoStatus { repopath: path, } rs.tags = make(map[string]string) - return rs -} - -func (rs *RepoStatus) InitWindow() { - if ! rs.Initialized() { - log.Log(WARN, "not initalized yet (no parent for the window?)") - return - } - if rs.window != nil { - log.Log(WARN, "You already have a window") - rs.ready = true - return - } - - log.Log(WARN, "Creating the Window") - rs.window = gadgets.NewBasicWindow(rs.parent, "GO Repo Details") + rs.window = gadgets.NewBasicWindow(p, "GO Repo Details") rs.ready = true + return rs } -- cgit v1.2.3