File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,10 @@ public class CGMStatusHUDViewModel {
60
60
if isManualGlucoseCurrent {
61
61
// If there is a current manual glucose, it displays the current status highlight icon
62
62
setManualGlucoseTrendIconOverride ( )
63
+ } else if let localizedMessage = storedStatusHighlight? . localizedMessage,
64
+ let statusState = storedStatusHighlight? . state
65
+ {
66
+ accessibilityString = localizedMessage + " , " + statusState. localizedDescription
63
67
}
64
68
}
65
69
}
@@ -152,6 +156,9 @@ public class CGMStatusHUDViewModel {
152
156
if isManualGlucoseCurrent {
153
157
// a manual glucose value presents any status highlight icon instead of a trend icon
154
158
setManualGlucoseTrendIconOverride ( )
159
+ if let statusState = storedStatusHighlight? . state {
160
+ accessibilityStrings. append ( statusState. localizedDescription)
161
+ }
155
162
} else if let trend = glucoseDisplay? . trendType, glucoseValueCurrent {
156
163
self . trend = trend
157
164
glucoseTrendTintColor = glucoseDisplay? . glucoseRangeCategory? . trendColor ?? . glucoseTintColor
You can’t perform that action at this time.
0 commit comments