This patch adds a new operator flag to clear the redo panel. It's useful for operators that aren't registered but shouldn't be jumped over by the redo panel (like the sculpt brush stroke operator).
Details
Details
- Reviewers
Campbell Barton (campbellbarton) - Maniphest Tasks
- T101743: Regression: Redo panel created on sculpting
Diff Detail
Diff Detail
Event Timeline
Comment Actions
From looking into this, sculpt is performing an undo but the absence of the OPTYPE_UNDO flag prevents the redo popup from being closed.
Submitted a separate diff D16523: WM: operators that add their own undo pushes now clears the redo panel address this issue more generally by detecting when an undo step was added without the need for operators to add a separate flag.