From 13b0493430910d53c3cd68935a1692521b796c31 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Tue, 14 May 2024 21:59:41 -0400 Subject: Fix BinaryDataNotification --- python/binaryview.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'python/binaryview.py') 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: -- cgit v1.3.1