diff options
Diffstat (limited to 'digStatusWindow.go')
| -rw-r--r-- | digStatusWindow.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/digStatusWindow.go b/digStatusWindow.go index dce5b71..a0917f5 100644 --- a/digStatusWindow.go +++ b/digStatusWindow.go @@ -55,14 +55,14 @@ type digStatus struct { statusHTTP *gadgets.OneLiner } -func NewDigStatusWindow(p *gui.Node) *digStatus { +func NewDigStatusWindow() *digStatus { var ds *digStatus ds = new(digStatus) ds.ready = false ds.hidden = true - ds.window = gadgets.NewBasicWindow(p, "DNS Resolver Status") + ds.window = gadgets.RawBasicWindow("DNS Resolver Status") ds.window.Make() // ds.window.Draw() // ds.window.Hide() |
