This commit is contained in:
Will McGugan
2022-08-30 12:42:57 +01:00
parent 40013f533e
commit f5a8de7b8b

View File

@@ -668,7 +668,7 @@ class Widget(DOMNode):
@property
def _focus_sort_key(self) -> tuple[int, int]:
"""Key function to sort widgets in to tfocus order."""
"""Key function to sort widgets in to focus order."""
x, y, _, _ = self.virtual_region
top, _, _, left = self.styles.margin
return y - top, x - left