summaryrefslogtreecommitdiff
path: root/box.go
diff options
context:
space:
mode:
Diffstat (limited to 'box.go')
-rw-r--r--box.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/box.go b/box.go
index 5b4febe..67c0c05 100644
--- a/box.go
+++ b/box.go
@@ -42,6 +42,9 @@ func (n *Node) AddComboBox(title string, s ...string) *Node {
}
func (n *Node) GetText() string {
+ if (n.uiMultilineEntry != nil) {
+ return n.uiMultilineEntry.Text()
+ }
if (n.uiText == nil) {
return ""
}