diff --git a/plugins/patching/core.py b/plugins/patching/core.py index e67a6ad..ff2e99e 100644 --- a/plugins/patching/core.py +++ b/plugins/patching/core.py @@ -37,7 +37,7 @@ class PatchingCore(object): PLUGIN_NAME = 'Patching' - PLUGIN_VERSION = '0.1.0' + PLUGIN_VERSION = '0.1.2' PLUGIN_AUTHORS = 'Markus Gaasedelen' PLUGIN_DATE = '2022' diff --git a/plugins/patching/ui/preview_ui.py b/plugins/patching/ui/preview_ui.py index bfd982b..ee680cd 100644 --- a/plugins/patching/ui/preview_ui.py +++ b/plugins/patching/ui/preview_ui.py @@ -91,7 +91,7 @@ def _ui_init(self): self._edit_timer.setSingleShot(True) self._edit_timer.timeout.connect(self._edit_stopped) - if ida_name.get_nlist_size() > 20_000: + if ida_name.get_nlist_size() > 20000: self._line_assembly.textEdited.connect(self._edit_started) else: self._line_assembly.textEdited.connect(self.controller.edit_assembly)