Undo/reapply transactions #111
-
|
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! |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
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.