mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 15:00:40 +00:00
typo
This commit is contained in:
parent
3f0eef67a0
commit
5c21abe298
1 changed files with 2 additions and 2 deletions
|
@ -145,7 +145,7 @@ class EquipmentProfileEditBloc extends Bloc<EquipmentProfileEditEvent, Equipment
|
|||
emit(state.copyWith(isLoading: false));
|
||||
}
|
||||
|
||||
bool _canSave(String name, double? exponent) {
|
||||
return name.isNotEmpty && exponent != null && _newEquipmentProfile != _originalEquipmentProfile;
|
||||
bool _canSave(String name, double? lensZoom) {
|
||||
return name.isNotEmpty && lensZoom != null && _newEquipmentProfile != _originalEquipmentProfile;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue