-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix undo/redo merge bugs #885
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with two minor comments.
pyface/undo/command_stack.py
Outdated
@@ -201,6 +201,9 @@ def push(self, command): | |||
|
|||
# Do nothing more if the command was merged. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this comment needs to be updated - or removed - given the recent changes.
Also, given that the 7.3.0 release is imminent, do we need to backport this PR to the 7.2 maintenance branch for a 7.2.1 bug fix release? We could backport the changes purely in principle, in case someone requests a 7.2.1 specifically and can't use 7.3.0. |
If 7.3 is about to come out, then we don't need to do the backport, but maybe keep the flag on the PR in case for some reason we later need a 7.2.1 release and then we can easily work out what needs to be backported. |
Co-authored-by: Poruri Sai Rahul <rporuri@enthought.com>
Add tests for undo/redo and fix #883 and fix #884
Not much more.