diff options
| -rw-r--r-- | dnsLookupStatus.go | 1 | ||||
| -rw-r--r-- | gui.go | 5 | ||||
| -rw-r--r-- | hostnameStatus.go | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/dnsLookupStatus.go b/dnsLookupStatus.go index 79b51c9..6488635 100644 --- a/dnsLookupStatus.go +++ b/dnsLookupStatus.go @@ -93,6 +93,7 @@ func NewDigStatusWindow(p *gui.Node) *digStatus { ds.hidden = true ds.window = gadgets.NewBasicWindow(p, "DNS Resolver Status") + ds.window.Draw() ds.window.Hide() // summary of the current state of things @@ -35,6 +35,9 @@ func detailsTab(title string) { var g2 *gui.Node me.details = gadgets.NewBasicWindow(me.myGui, title) + me.details.Draw() + me.details.Hide() + g2 = me.details.Box().NewGroup("Real Stuff") grid := g2.NewGrid("gridnuts", 2, 2) @@ -78,6 +81,8 @@ func debugTab(title string) { var g2 *gui.Node me.debug = gadgets.NewBasicWindow(me.myGui, title) + me.debug.Draw() + me.debug.Hide() g2 = me.debug.Box().NewGroup("Real Stuff") diff --git a/hostnameStatus.go b/hostnameStatus.go index fa0f730..cff0d9d 100644 --- a/hostnameStatus.go +++ b/hostnameStatus.go @@ -63,6 +63,7 @@ func NewHostnameStatusWindow(p *gui.Node) *hostnameStatus { hs.hostname = me.hostname hs.window = gadgets.NewBasicWindow(p, hs.hostname + " Status") + hs.window.Draw() hs.window.Hide() group := hs.window.Box().NewGroup("Summary") |
