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
When user changes one of these settings:
due to this code:
@override void didChangeDependencies() { super.didChangeDependencies(); _bloc.add(EquipmentProfileChangedEvent(EquipmentProfile.of(context))); _bloc.add(StopTypeChangedEvent(context.watch<StopType>())); if (!MeteringScreenLayout.featureStatusOf(context, MeteringScreenLayoutFeature.filmPicker)) { _bloc.add(const FilmChangedEvent(Film.other())); } }
response vibration is called.
In order to fix it custom dependency listener can be implemented.
Response vibration should be called only when EV and corresponding exposure pairs list are changed.
This can be achieve simply by checking if, for example, new ND values is equal to the current one. If true - nothing happens.
The text was updated successfully, but these errors were encountered:
vodemn
Successfully merging a pull request may close this issue.
1. Vibration on non-measurement user input
When user changes one of these settings:
due to this code:
response vibration is called.
In order to fix it custom dependency listener can be implemented.
2. Vibration when resulting EV is not changed
Response vibration should be called only when EV and corresponding exposure pairs list are changed.
This can be achieve simply by checking if, for example, new ND values is equal to the current one. If true - nothing happens.
The text was updated successfully, but these errors were encountered: