From 318c788ee468eb9e0ccf28bdca3d5caf6e696b38 Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Sat, 23 Nov 2024 09:18:42 -0500 Subject: [PATCH] Fix docs about multi-line text in forms Previously TextAreas could not be added to forms. This functionality has been added, but the documentation still said that it was not possible. Signed-off-by: Sam Whited --- textarea.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/textarea.go b/textarea.go index bdee098..3f61ca8 100644 --- a/textarea.go +++ b/textarea.go @@ -94,9 +94,6 @@ type textAreaUndoItem struct { // text is not supported. Word-wrapping is enabled by default but can be turned // off or be changed to character-wrapping. // -// At this point, a text area cannot be added to a [Form]. This will be added in -// the future. -// // # Navigation and Editing // // A text area is always in editing mode and no other mode exists. The following