all engines firing quietly

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-05 14:49:42 -06:00
parent fc6c72740b
commit 65f7db2ba6
3 changed files with 7 additions and 0 deletions

View File

@ -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

5
gui.go
View File

@ -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")

View File

@ -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")