mirror of
https://github.com/Maks1mS/bubbles.git
synced 2025-04-04 06:23:43 +03:00
добавляет ResetView и ResetChanged
This commit is contained in:
parent
0c77bee95d
commit
b1b5a499b7
@ -466,10 +466,18 @@ func (m *Model) Reset() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (m *Model) ResetWithoutValue() {
|
func (m *Model) ResetWithoutValue() {
|
||||||
|
m.ResetView()
|
||||||
|
m.ResetChanged()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Model) ResetView() {
|
||||||
m.col = 0
|
m.col = 0
|
||||||
m.row = 0
|
m.row = 0
|
||||||
m.viewport.GotoTop()
|
m.viewport.GotoTop()
|
||||||
m.SetCursor(0)
|
m.SetCursor(0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Model) ResetChanged() {
|
||||||
m.isChanged = false
|
m.isChanged = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user