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
#enabled:
Author: @krono
Message: Put a selector to #enabled: for each button, for example for "Commit", so that it is not enabled when there's no proper selection
The text was updated successfully, but these errors were encountered:
"..." commitButton := builder pluggableActionButtonSpec new. commitButton model: self; label: 'Commit'; enabled: #hasProjectSelection; action: #actionCommit; help: 'Commit your current changes.'. "..."
hasProjectSelection ^ self projectIndex > 1 and: [self projectList size >= self projectIndex]
Sorry, something went wrong.
6915c77
Disable buttons when appropriate; minor changes
dba5f7b
Closes #52
fniephaus
No branches or pull requests
Author: @krono
Message:
Put a selector to
#enabled:
for each button, for example for "Commit", so that it is not enabled when there's no proper selectionThe text was updated successfully, but these errors were encountered: