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
I think in kivy/kivy/lang.py
if rule.handlers: rctx['hdl'].append((widget.proxy_ref, rule.handlers))
shoule be replaced by
for handler in rule.handlers: idmap = copy(global_idmap) idmap.update(rctx['ids']) idmap['self'] = widget.proxy_ref if hasattr(widget.proxy_ref, handler.name): method = getattr(widget.proxy_ref, handler.name) def new_method(*args): method(*args) exec handler.value in idmap setattr(widget.proxy_ref, handler.name, new_method) else: def new_method(*args): exec handler.value in idmap setattr(widget.proxy_ref, handler.name, new_method)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think in kivy/kivy/lang.py
shoule be replaced by
The text was updated successfully, but these errors were encountered: