summaryrefslogtreecommitdiff
path: root/textbox.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-08 18:03:11 -0600
committerJeff Carr <[email protected]>2025-02-08 18:03:11 -0600
commit82ed6874601ee09b39768747aa04b1b22722db5d (patch)
tree969ad2eac9dce355b80af64e94a1aaaabe8b31aa /textbox.go
parent5a84456c7aa416ed228a809be28137802f35b6e0 (diff)
mouse drag was not always right
Diffstat (limited to 'textbox.go')
-rw-r--r--textbox.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/textbox.go b/textbox.go
index 66ba092..5e849ea 100644
--- a/textbox.go
+++ b/textbox.go
@@ -105,4 +105,9 @@ func textboxClosed() {
// send an event from the plugin with the new string
me.myTree.SendUserEvent(me.textbox.callerTK.node)
+
+ win := me.textbox.callerTK.findParentWindow()
+ if win != nil {
+ win.dumpWidget("redraw this!!!")
+ }
}