I have a ui.button created in a class function. The button action is pointing to a different function in the same class.
The action will not call when the button is pushed. Should this work? ( This is simplified logic of the actual code)
class Note:
def f1(self):
print 'hello'
def f2(self):
b = ui.button()
b. action = f1
c = Note()
c.f2()