mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
comments
This commit is contained in:
@@ -13,8 +13,11 @@ else:
|
|||||||
class Edge(Protocol):
|
class Edge(Protocol):
|
||||||
"""Any object that defines an edge (such as Layout)."""
|
"""Any object that defines an edge (such as Layout)."""
|
||||||
|
|
||||||
|
# Size of edge in cells, or None for no fixed size
|
||||||
size: int | None
|
size: int | None
|
||||||
|
# Portion of flexible space to use if size is None
|
||||||
fraction: int
|
fraction: int
|
||||||
|
# Minimim size for edge, in cells
|
||||||
min_size: int
|
min_size: int
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user