We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bcbbc3 commit 5c110efCopy full SHA for 5c110ef
1 file changed
pyclassinformer/get_func_colors.py
100755
100644
@@ -8,6 +8,13 @@
8
9
def get_chooser_data(chooser="Functions"):
10
cri = ida_kernwin.chooser_row_info_vec_t()
11
+ ida_kernwin.get_chooser_rows(cri, "Functions", 0)
12
+ if cri.size() == 0:
13
+ # for IDA 9.3
14
+ # The version might have a bug and it crashes when calling
15
+ # get_chooser_rows with GCRF_ALL
16
+ # To avotid that, return None if the first line returns empty.
17
+ return None
18
ida_kernwin.get_chooser_rows(cri, chooser, ida_kernwin.GCRF_ALL)
19
return cri
20
0 commit comments