добавляет ResetView и ResetChanged

This commit is contained in:
Maxim Slipenko 2022-11-09 12:44:07 +00:00
parent 0c77bee95d
commit b1b5a499b7

View File

@ -466,10 +466,18 @@ func (m *Model) Reset() {
}
func (m *Model) ResetWithoutValue() {
m.ResetView()
m.ResetChanged()
}
func (m *Model) ResetView() {
m.col = 0
m.row = 0
m.viewport.GotoTop()
m.SetCursor(0)
}
func (m *Model) ResetChanged() {
m.isChanged = false
}