mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 23:10:40 +00:00
fixed ApertureValue
value
This commit is contained in:
parent
8871b643d2
commit
888a9a6a76
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ class ApertureValue extends PhotographyValue<double> {
|
|||
const ApertureValue(super.rawValue, super.stopType);
|
||||
|
||||
@override
|
||||
double get value => 1 / rawValue;
|
||||
double get value => rawValue;
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
|
|
Loading…
Reference in a new issue