* 'Undo' the last user entry by going back one entry in the history table. * This keeps the following entries in order to allow for a 'redo'. * This does not modify the history table, only the pointer to the current state. * @private
()
| 1759 | * @private |
| 1760 | */ |
| 1761 | _historyTableUndo() { |
| 1762 | this._historyTableUndoOrRedo(true); |
| 1763 | } |
| 1764 | |
| 1765 | /** |
| 1766 | * 'Redo' the next user entry in the history table. |
no test coverage detected