textarea -- fix nextUndo after SetText

pull/857/head
mizunooto 12 months ago
parent 8bd761dda8
commit 5f8630c515

@ -385,6 +385,7 @@ func (t *TextArea) SetText(text string, cursorAtTheEnd bool) *TextArea {
t.cursor.row, t.cursor.actualColumn, t.cursor.column = 0, 0, 0
t.cursor.pos = [3]int{1, 0, -1}
t.undoStack = t.undoStack[:0]
t.nextUndo = 0
if len(text) > 0 {
t.spans = append(t.spans, textAreaSpan{

Loading…
Cancel
Save