Make undo buffer cull the right end

master
William Toohey 10 years ago
parent 58b2241d87
commit 35d1b861f0
  1. 2
      src/js/HuesEditor.js

@ -380,7 +380,7 @@ HuesEditor.prototype.pushUndo = function(name, editor, oldText, newText) {
this.undoBuffer.push({songVar: name, editor: editor, text: oldText});
while(this.undoBuffer.length > 50) {
this.undoBuffer.pop();
this.undoBuffer.shift();
}
this.updateUndoUI();
};

Loading…
Cancel
Save