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 709c3d9 + a2a3d92 commit b377afdCopy full SHA for b377afd
1 file changed
source/NVDAObjects/behaviors.py
@@ -887,7 +887,12 @@ def _get_states(self):
887
states.add(controlTypes.State.INVISIBLE)
888
states.discard(controlTypes.State.CHECKED)
889
return states
890
-
+ def _isEqual(self, other):
891
+ return (
892
+ self.parent == other.parent
893
+ and self.columnNumber == other.columnNumber
894
+ and self.rowNumber == other.rowNumber
895
+ )
896
897
class FocusableUnfocusableContainer(NVDAObject):
898
"""Makes an unfocusable container focusable using its first focusable descendant.
0 commit comments