(self)
| 2361 | return self._undoEnabled |
| 2362 | |
| 2363 | def _check_undo_enabled(self) -> None: |
| 2364 | if not self._undoEnabled: |
| 2365 | raise UndoRedoError("Undo/Redo feature is currently disabled!") |
| 2366 | |
| 2367 | def _create_transaction_group(self) -> TransactionGroupG: |
| 2368 | tgroup = TransactionGroupG( |
no test coverage detected