Page MenuHome

Redo Panel Barrier
AbandonedPublic

Authored by Joseph Eagar (joeedh) on Aug 15 2022, 11:00 PM.

Details

Summary

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).

Diff Detail

Event Timeline

Joseph Eagar (joeedh) requested review of this revision.Aug 15 2022, 11:00 PM
Joseph Eagar (joeedh) created this revision.

Sync with latest master

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.

As discussed in the module meetting, this patch is replaced by D16523