diff options
| author | Jeff Carr <[email protected]> | 2025-02-09 04:19:32 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-09 04:19:32 -0600 |
| commit | 9a08b37be40781681e5432774d6bc60a7a7816f1 (patch) | |
| tree | 6f69d57ece84004b18b4576d46deb21bee61c9ef /textbox.go | |
| parent | 955afcb1a98c87dfd51182fa03a25b8ad6495254 (diff) | |
better window titlebar
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") |
