mirror of https://github.com/rivo/tview.git
Merge pull request #857 from JoseRizzal/textarea__fix_nextUndo_after_SetText
Closes #844 Fix TextArea's SetText by resetting nextUndo counter
This commit is contained in:
commit
bb9595ee0f
|
@ -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…
Reference in New Issue