mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-23 07:50:42 +00:00
Fixed range picker dialog
This commit is contained in:
parent
a976fcdaff
commit
79b9ae60c3
1 changed files with 2 additions and 2 deletions
|
@ -68,8 +68,8 @@ class _DialogRangePickerState<T extends PhotographyValue> extends State<DialogRa
|
||||||
divisions: widget.values.length - 1,
|
divisions: widget.values.length - 1,
|
||||||
onChanged: (value) {
|
onChanged: (value) {
|
||||||
setState(() {
|
setState(() {
|
||||||
_start = value.start.toInt();
|
_start = value.start.round();
|
||||||
_end = value.end.toInt();
|
_end = value.end.round();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue