Skip to content

Commit c0e0f1a

Browse files
committed
Fix text style
1 parent 3a34cb6 commit c0e0f1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

trogon/widgets/parameter_controls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def yield_segments() -> Iterable[Text]:
410410
if isinstance(name, str):
411411
yield Text(name)
412412
else:
413-
yield Text(" / ", style="dim").join([Text(n) for n in name])
413+
yield Text(" / ").join([Text(n) for n in name])
414414

415415
if multiple:
416416
yield Text("multiple", style="dim")

0 commit comments

Comments
 (0)