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 61000de + a852362 commit bc1b962Copy full SHA for bc1b962
1 file changed
source/NVDAObjects/IAccessible/__init__.py
@@ -1712,6 +1712,11 @@ def _get_devInfo(self):
1712
except Exception as e:
1713
ret = "exception: %s" % e
1714
info.append("IAccessible2 attributes: %s" % ret)
1715
+ try:
1716
+ ret = ", ".join(r.RelationType for r in self._IA2Relations)
1717
+ except Exception as e:
1718
+ ret = f"exception: {e}"
1719
+ info.append(f"IAccessible2 relations: {ret}")
1720
return info
1721
1722
def _get_language(self):
0 commit comments