diff options
| author | Jeff Carr <[email protected]> | 2021-11-04 02:48:41 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2021-11-04 02:48:41 -0500 |
| commit | 998e5c6c34fa43079153cb7f40b4daabe2ea10e9 (patch) | |
| tree | 2b8691c7037bb0adc39f76bfdf6bf639145610f1 | |
| parent | ff30a1acbb0e56c358f0490b0e89e8324268b032 (diff) | |
GOOD: read text from multi-line entrybox
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | box.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 "" } |
