pushHistoryBoundary method

void pushHistoryBoundary()

Breaks the current undo coalescing chain.

Call this before a submit/save/apply action if the next edit should start a fresh undo step instead of merging with the previous contiguous burst.

Implementation

void pushHistoryBoundary() {
  _history.breakCoalescing();
}