fix input bar not rendering capital letters

This commit is contained in:
Dax Raad 2025-07-04 17:21:36 -04:00
parent 997cb2d945
commit 85214d7c59

View file

@ -1512,7 +1512,7 @@ func (m Model) Update(msg tea.Msg) (Model, tea.Cmd) {
m.transposeLeft()
default:
m.insertRunesFromUserInput([]rune{msg.Code})
m.insertRunesFromUserInput([]rune(msg.Text))
}
case pasteMsg: