mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +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);
|
const ApertureValue(super.rawValue, super.stopType);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
double get value => 1 / rawValue;
|
double get value => rawValue;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String toString() {
|
String toString() {
|
||||||
|
|
Loading…
Reference in a new issue