We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open binary Open snippet editor Run Snippet Close Snippet editor Close binary Open binary Attempt to open snippet editor
[Default] Traceback (most recent call last): [Default] File "/home/jcase/.binaryninja/repositories/official/plugins/Vector35_snippets/__init__.py", line 764, in launchPlugin [Default] snippets.show() [Default] RuntimeError: Internal C++ object (Snippets) already deleted.
def launchPlugin(context): global snippets if not snippets: snippets = Snippets(context, parent=context.widget) snippets.show()
adding a try except to snippets.show, and recreating the object on exception fixes it for me (I acknowledge that is not going to be the correct fix)
def launchPlugin(context): global snippets if not snippets: snippets = Snippets(context, parent=context.widget) try: snippets.show() except: snippets = Snippets(context, parent=context.widget)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Open binary
Open snippet editor
Run Snippet
Close Snippet editor
Close binary
Open binary
Attempt to open snippet editor
adding a try except to snippets.show, and recreating the object on exception fixes it for me (I acknowledge that is not going to be the correct fix)
The text was updated successfully, but these errors were encountered: