We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b5fa21 + 21dbd4b commit 2e3fa39Copy full SHA for 2e3fa39
1 file changed
source/NVDAObjects/IAccessible/ia2TextMozilla.py
@@ -270,6 +270,8 @@ def _iterRecursiveText(self, ti: offsets.OffsetsTextInfo, controlStack, formatCo
270
yield item
271
elif isinstance(item, int): # Embedded object.
272
embedded: typing.Optional[IAccessible] = _getEmbedded(ti.obj, item)
273
+ if embedded is None:
274
+ continue
275
notText = _getRawTextInfo(embedded) is NVDAObjectTextInfo
276
if controlStack is not None:
277
controlField = self._getControlFieldForObject(embedded)
0 commit comments