This commit is contained in:
Kevin Jahns
2022-02-03 21:25:29 +01:00
parent f577a8e3cf
commit 8fd1f3405a
2 changed files with 11 additions and 6 deletions

View File

@@ -285,19 +285,19 @@ export class UndoManager extends Observable {
/**
* Are undo steps available?
*
*
* @return {boolean} `true` if undo is possible
*/
canUndo() {
canUndo () {
return this.undoStack.length > 0
}
/**
* Are redo steps available?
*
*
* @return {boolean} `true` if redo is possible
*/
canRedo() {
canRedo () {
return this.redoStack.length > 0
}
}