Undo/reapply transactions #111
Answered
by
krauthaufen
somelinguist
asked this question in
Q&A
|
I’m currently trying to rewrite a project to use the Adaptive library. I got to the part where my model interacts with my undo/redo system. I’m wondering if there is a way I could take advantage of the library’s incremental nature to role back or reapply transactions manually as part of the system? Sorry if I’m missing something obvious. :) Thanks! |
Answered by
krauthaufen
Apr 1, 2023
Replies: 1 comment 1 reply
|
well if you're using adaptify you can just update the We currently have nothing to memorize changes internally since we use adaptify and immutable models on the input-side where undo/redo is relatively trivial. |
1 reply
Answer selected by
somelinguist
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
well if you're using adaptify you can just update the
AdaptiveModelto a stored immutable snapshot right? (this will result in minimal output changes)We currently have nothing to memorize changes internally since we use adaptify and immutable models on the input-side where undo/redo is relatively trivial.