Skip to content

Commit

Permalink
Fix text style
Browse files Browse the repository at this point in the history
  • Loading branch information
liancheng committed Aug 1, 2024
1 parent 3a34cb6 commit c0e0f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trogon/widgets/parameter_controls.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def yield_segments() -> Iterable[Text]:
if isinstance(name, str):
yield Text(name)
else:
yield Text(" / ", style="dim").join([Text(n) for n in name])
yield Text(" / ").join([Text(n) for n in name])

if multiple:
yield Text("multiple", style="dim")
Expand Down

0 comments on commit c0e0f1a

Please sign in to comment.