mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 01:43:27 +02:00
Increase maximum number of undo levels to 1000
This commit is contained in:
parent
f1572a165a
commit
c6af82dedc
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ History = (function () {
|
|||
}
|
||||
*/
|
||||
],
|
||||
MAX_HISTORY_ITEMS = 100,
|
||||
MAX_HISTORY_ITEMS = 1000,
|
||||
undoPosition = -1, // The next history item to undo; the next history item to redo = undoIndex + 1.
|
||||
undoData = {},
|
||||
redoData = {};
|
||||
|
|
Loading…
Reference in a new issue