You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 19, 2021. It is now read-only.
I had this error with IDA 7.3 when loading any idb, as long as IDArling plugin is in the plugins folder even if I don't use IDArling.
I commented this, which seems to be ok and not creating any issue so in case anyone is annoyed and needs a quick fix.
defnav_colorizer(self, ea, nbytes):
"""This is the custom nav colorizer used by the painter."""self._nbytes=nbytes# There is a bug in IDA: with a huge number of segments, all the navbar# is colored with the user color. This will be resolved in IDA 7.2.cursors=self._plugin.config["cursors"]
#if cursors["navbar"]:# for user in self._plugin.core.get_users().values():# # Cursor color# if ea - nbytes * 2 <= user["ea"] <= ea + nbytes * 2:# return long(user["color"])# # Cursor borders# if ea - nbytes * 4 <= user["ea"] <= ea + nbytes * 4:# return long(0)orig=ida_kernwin.call_nav_colorizer(
self._ida_nav_colorizer, ea, nbytes
)
returnlong(orig)
There is probably a better way of doing it though.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I had this error with IDA 7.3 when loading any idb, as long as IDArling plugin is in the plugins folder even if I don't use IDArling.
I commented this, which seems to be ok and not creating any issue so in case anyone is annoyed and needs a quick fix.
There is probably a better way of doing it though.
The text was updated successfully, but these errors were encountered: