GP-3521 add drop downs to undo/redo action to allow users to see and pick older undo or redos

This commit is contained in:
ghidragon 2023-06-13 13:52:19 -04:00
parent bc0bcbe985
commit 998370e09c
14 changed files with 303 additions and 115 deletions

View file

@ -303,6 +303,16 @@ public class StubProgram implements Program {
throw new UnsupportedOperationException();
}
@Override
public List<String> getAllUndoNames() {
throw new UnsupportedOperationException();
}
@Override
public List<String> getAllRedoNames() {
throw new UnsupportedOperationException();
}
@Override
public void addTransactionListener(TransactionListener listener) {
throw new UnsupportedOperationException();