Open Armag67 opened 10 months ago
Hello, On Python (3.11 with tkinter), code2flow don't see function calls in event bindings like:
self.bind_class("Entry", "<Button-3><ButtonRelease-3>", self.show_textmenu)
for my show_textmenu(self, event) function,
show_textmenu(self, event)
neither functions calls as arguments of another function like:
getVar = my_imported_function(othersargs, on_progress_callback=self.progress_Check)
for my progress_Check(args) function.
progress_Check(args)
But all works in my code...
Hello, On Python (3.11 with tkinter), code2flow don't see function calls in event bindings like:
for my
show_textmenu(self, event)
function,neither functions calls as arguments of another function like:
for my
progress_Check(args)
function.But all works in my code...