diff options
| author | Josh Ferrell <josh@vector35.com> | 2024-05-14 21:59:41 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2024-05-14 21:59:41 -0400 |
| commit | 13b0493430910d53c3cd68935a1692521b796c31 (patch) | |
| tree | d105c3758dcf0b6fc0a43c6384d68aac0173089c /python | |
| parent | 08c5286c19fd78fa9d3b9f469a639c7a1013f22e (diff) | |
Fix BinaryDataNotification
Diffstat (limited to 'python')
| -rw-r--r-- | python/binaryview.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index dee0375e..a6e0c872 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -186,6 +186,9 @@ class NotificationType(IntFlag): TypeArchiveDetached = 1 << 46 TypeArchiveConnected = 1 << 47 TypeArchiveDisconnected = 1 << 48 + UndoEntryAdded = 1 << 49 + UndoEntryTaken = 1 << 50 + RedoEntryTaken = 1 << 51 BinaryDataUpdates = DataWritten | DataInserted | DataRemoved FunctionLifetime = FunctionAdded | FunctionRemoved @@ -209,6 +212,7 @@ class NotificationType(IntFlag): ExternalLocationLifetime = ExternalLocationAdded | ExternalLocationRemoved ExternalLocationUpdates = ExternalLocationLifetime | ExternalLocationUpdated TypeArchiveUpdates = TypeArchiveAttached | TypeArchiveDetached | TypeArchiveConnected | TypeArchiveDisconnected + UndoUpdates = UndoEntryAdded | UndoEntryTaken | RedoEntryTaken class BinaryDataNotification: |
