Skip to content

Commit b4ca2fc

Browse files
authored
Merge 1f175f5 into 709c3d9
2 parents 709c3d9 + 1f175f5 commit b4ca2fc

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

source/NVDAObjects/behaviors.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,12 @@ def _get_states(self):
887887
states.add(controlTypes.State.INVISIBLE)
888888
states.discard(controlTypes.State.CHECKED)
889889
return states
890-
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+
)
891896

892897
class FocusableUnfocusableContainer(NVDAObject):
893898
"""Makes an unfocusable container focusable using its first focusable descendant.

0 commit comments

Comments
 (0)