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

@ -203,6 +203,11 @@ class ActionRow(Item[V]):
def width(self):
return 5
@property
def _total_count(self) -> int:
# 1 for self and all children
return 1 + len(self._children)
@property
def type(self) -> Literal[ComponentType.action_row]:
return ComponentType.action_row