Skip to content

Commit bc1b962

Browse files
authored
Merge a852362 into 61000de
2 parents 61000de + a852362 commit bc1b962

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

source/NVDAObjects/IAccessible/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1712,6 +1712,11 @@ def _get_devInfo(self):
17121712
except Exception as e:
17131713
ret = "exception: %s" % e
17141714
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}")
17151720
return info
17161721

17171722
def _get_language(self):

0 commit comments

Comments
 (0)