flewkey
/
linger
Archived
1
0
Fork 0

Increase chat character limit

This commit is contained in:
Ryan Fox 2021-02-25 00:34:33 +00:00
parent f8dc0c09f4
commit 8eb6f966ba
Signed by: flewkey
GPG Key ID: 94F56ADFD848851E
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ func getMessageCounts(m mainModel) (int, int, int) {
func chatModelInit() chatModel {
input := textinput.NewModel()
input.Placeholder = "Enter a chat message"
input.CharLimit = 64
input.CharLimit = 256
input.Focus()
return chatModel{0, input}
}