diff options
| author | Jeff Carr <[email protected]> | 2024-01-03 18:15:54 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-03 18:15:54 -0600 |
| commit | 0a20b22a6c13c2ccf6a914cd847be9e3f744b343 (patch) | |
| tree | bd8bcde875b5d88e5f890331dfb3cafc12b05b23 /textbox.go | |
| parent | 3f42ba188239c0c367718348515bd1b825196c7a (diff) | |
move to go.wit.com/log !!!
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'textbox.go')
| -rw-r--r-- | textbox.go | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,8 @@ package gui import ( + "go.wit.com/log" + "go.wit.com/gui/gui/toolkit" ) @@ -8,7 +10,7 @@ func (parent *Node) NewTextbox(name string) *Node { newNode := parent.newNode(name, toolkit.Textbox) newNode.Custom = func() { - log(debugGui, "NewTextbox changed =", name) + log.Log(GUI, "NewTextbox changed =", name) } a := newAction(newNode, toolkit.Add) @@ -22,7 +24,7 @@ func (parent *Node) NewEntryLine(name string) *Node { newNode.X = 1 newNode.Custom = func() { - log(debugGui, "NewTextbox changed =", name) + log.Log(GUI, "NewTextbox changed =", name) } a := newAction(newNode, toolkit.Add) |
