diff options
Diffstat (limited to 'textbox.go')
| -rw-r--r-- | textbox.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -33,7 +33,7 @@ func (callertk *guiWidget) showTextbox() { if me.textbox.tk == nil { // should only happen once me.textbox.tk = makeNewFlagWidget(me.textbox.wId) - me.textbox.tk.dumpWidget("init() textbox") + // me.textbox.tk.dumpWidget("init() textbox") } if me.textbox.tk == nil { log.Log(GOCUI, "showTextbox() Is Broken") @@ -60,7 +60,7 @@ func (callertk *guiWidget) showTextbox() { me.textbox.tk.setColorModal() me.textbox.tk.v.Clear() cur := strings.TrimSpace(callertk.String()) - log.Info("setting textbox string to:", cur) + // log.Info("setting textbox string to:", cur) me.textbox.tk.v.WriteString(cur) me.textbox.tk.v.Editable = true @@ -95,7 +95,7 @@ func textboxClosed() { newtext = strings.TrimSpace(newtext) me.textbox.active = false me.textbox.tk.Hide() - log.Info("textbox closed with text:", newtext, me.textbox.callerTK.cuiName) + // log.Info("textbox closed with text:", newtext, me.textbox.callerTK.cuiName) if me.clock.tk.v != nil { me.baseGui.SetCurrentView("help") |
