summaryrefslogtreecommitdiff
path: root/textbox.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-09 04:19:32 -0600
committerJeff Carr <[email protected]>2025-02-09 04:19:32 -0600
commit9a08b37be40781681e5432774d6bc60a7a7816f1 (patch)
tree6f69d57ece84004b18b4576d46deb21bee61c9ef /textbox.go
parent955afcb1a98c87dfd51182fa03a25b8ad6495254 (diff)
better window titlebar
Diffstat (limited to 'textbox.go')
-rw-r--r--textbox.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/textbox.go b/textbox.go
index 897602d..5799a3d 100644
--- a/textbox.go
+++ b/textbox.go
@@ -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")