File tree 1 file changed +9
-3
lines changed
open_earable/lib/controls_tab/views
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,9 @@ class _V1SensorConfigurationCardState extends State<V1SensorConfigurationCard> {
125
125
});
126
126
}
127
127
}, (String newValue) {
128
- OpenEarableSettings ().selectedImuOption = newValue;
128
+ setState (() {
129
+ OpenEarableSettings ().selectedImuOption = newValue;
130
+ });
129
131
}),
130
132
_sensorConfigurationRow (
131
133
"Barometer" ,
@@ -139,7 +141,9 @@ class _V1SensorConfigurationCardState extends State<V1SensorConfigurationCard> {
139
141
});
140
142
}
141
143
}, (String newValue) {
142
- OpenEarableSettings ().selectedBarometerOption = newValue;
144
+ setState (() {
145
+ OpenEarableSettings ().selectedBarometerOption = newValue;
146
+ });
143
147
}),
144
148
_sensorConfigurationRow (
145
149
"Microphone" ,
@@ -151,7 +155,9 @@ class _V1SensorConfigurationCardState extends State<V1SensorConfigurationCard> {
151
155
OpenEarableSettings ().microphoneSettingSelected = newValue! ;
152
156
});
153
157
}, (String newValue) {
154
- OpenEarableSettings ().selectedMicrophoneOption = newValue;
158
+ setState (() {
159
+ OpenEarableSettings ().selectedMicrophoneOption = newValue;
160
+ });
155
161
}),
156
162
SizedBox (height: 8 ),
157
163
Row (
You can’t perform that action at this time.
0 commit comments