Skip to content

Commit

Permalink
tweak to blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed May 23, 2022
1 parent 58bfa48 commit e8032fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rich/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -2380,9 +2380,9 @@ def stringify(value: object) -> str:
"rect",
fill=background,
x=x * char_width,
y=y * line_height,
width=char_width * text_length + 1,
height=line_height + 1,
y=y * line_height + 1.5,
width=char_width * text_length + 0.5,
height=line_height + 0.25,
)
)

Expand Down

0 comments on commit e8032fc

Please sign in to comment.