Update total count tracking to always consider the wrapper object

This commit is contained in:
Rapptz
2025-08-21 22:20:12 -04:00
parent 0309aac335
commit 9bda89b0d6
6 changed files with 28 additions and 18 deletions

View File

@ -147,6 +147,10 @@ class Item(Generic[V]):
def width(self) -> int:
return 1
@property
def _total_count(self) -> int:
return 1
@property
def view(self) -> Optional[V]:
"""Optional[Union[:class:`View`, :class:`LayoutView`]]: The underlying view for this item."""