ensure step before formatting is persisted in undo history
This commit is contained in:
parent
8820546f49
commit
9dac91a70d
2 changed files with 8 additions and 3 deletions
|
@ -106,6 +106,12 @@ export default class HistoryManager {
|
|||
return shouldPush;
|
||||
}
|
||||
|
||||
ensureLastChangesPushed(model) {
|
||||
if (this._changedSinceLastPush) {
|
||||
this._pushState(model, this._lastCaret);
|
||||
}
|
||||
}
|
||||
|
||||
canUndo() {
|
||||
return this._currentIndex >= 1 || this._changedSinceLastPush;
|
||||
}
|
||||
|
@ -117,9 +123,7 @@ export default class HistoryManager {
|
|||
// returns state that should be applied to model
|
||||
undo(model) {
|
||||
if (this.canUndo()) {
|
||||
if (this._changedSinceLastPush) {
|
||||
this._pushState(model, this._lastCaret);
|
||||
}
|
||||
this.ensureLastChangesPushed(model);
|
||||
this._currentIndex -= 1;
|
||||
return this._stack[this._currentIndex];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue