We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62f034d commit 5a8c621Copy full SHA for 5a8c621
plugins/patching/core.py
@@ -37,7 +37,7 @@
37
class PatchingCore(object):
38
39
PLUGIN_NAME = 'Patching'
40
- PLUGIN_VERSION = '0.1.0'
+ PLUGIN_VERSION = '0.1.2'
41
PLUGIN_AUTHORS = 'Markus Gaasedelen'
42
PLUGIN_DATE = '2022'
43
plugins/patching/ui/preview_ui.py
@@ -91,7 +91,7 @@ def _ui_init(self):
91
self._edit_timer.setSingleShot(True)
92
self._edit_timer.timeout.connect(self._edit_stopped)
93
94
- if ida_name.get_nlist_size() > 20_000:
+ if ida_name.get_nlist_size() > 20000:
95
self._line_assembly.textEdited.connect(self._edit_started)
96
else:
97
self._line_assembly.textEdited.connect(self.controller.edit_assembly)
0 commit comments