Skip to content

Commit

Permalink
Tweaks to word wrapping in messages
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Feb 3, 2022
1 parent b0f1403 commit 15b3092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/components/followScroll.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@ const FollowScroll = React.forwardRef<FollowScrollHandle, FollowScrollProps>(
height: '80%',
width: '100vw',
padding: '2px 8px 4px',
whiteSpace: wrap ? undefined : 'nowrap'
// wordWrap: 'break-word'
whiteSpace: wrap ? 'normal' : 'nowrap',
wordWrap: 'break-word'
}}
id='logBox'
>
Expand Down

0 comments on commit 15b3092

Please sign in to comment.