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
because they introduce limitation for elements event handlers management. example:
but := ToButton new. but whenClickedDo: [:event | bla bla ].
can be coded as :
but := ToButton new. handler := BlEventHandler on: BlClickedEvent do: [:event | bla bla ]. but addEventHandler: handler.
which allows to remove/replace the event handler as in:
but removeEventHandler: handler. handler := ... but addEventHandler: handler.
The text was updated successfully, but these errors were encountered:
related to #44
Sorry, something went wrong.
Also related to pharo-graphics/Bloc#257
No branches or pull requests
because they introduce limitation for elements event handlers management.
example:
can be coded as :
which allows to remove/replace the event handler as in:
The text was updated successfully, but these errors were encountered: