changes for the log control window()
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
92db003be0
commit
166614d89d
4
args.go
4
args.go
|
@ -58,8 +58,4 @@ func init() {
|
||||||
CHANGE.Subsystem = "gui"
|
CHANGE.Subsystem = "gui"
|
||||||
CHANGE.Desc = "user changed something"
|
CHANGE.Desc = "user changed something"
|
||||||
CHANGE.Register()
|
CHANGE.Register()
|
||||||
|
|
||||||
for _, s := range log.ListFlags() {
|
|
||||||
log.Info("go.wit.com/gui/gui ListFlags() returned:", s)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -108,8 +108,6 @@ func (n *Node) AppendText(str string) {
|
||||||
func (n *Node) GetText() string {
|
func (n *Node) GetText() string {
|
||||||
if (n.S != n.Text) {
|
if (n.S != n.Text) {
|
||||||
log.Warn("GetText() is screwed up. TODO: fix this dumb crap")
|
log.Warn("GetText() is screwed up. TODO: fix this dumb crap")
|
||||||
stuff := log.ListFlags()
|
|
||||||
log.Warn("ListFlags() =", stuff)
|
|
||||||
}
|
}
|
||||||
if (n.S != "") {
|
if (n.S != "") {
|
||||||
return n.S
|
return n.S
|
||||||
|
@ -211,6 +209,11 @@ func (n *Node) Window(title string) *Node {
|
||||||
return n.NewWindow(title)
|
return n.NewWindow(title)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (n *Node) Ready() bool {
|
||||||
|
if n == nil {return false}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
// This should not really do anything. as per the docs, the "Standard()" way
|
// This should not really do anything. as per the docs, the "Standard()" way
|
||||||
// should be the default way
|
// should be the default way
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue