diff options
author | Blaž Hrastnik | 2022-01-14 03:25:59 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-01-16 05:19:48 +0000 |
commit | e7eab95b943ff15396c5d512a9c95650ab98a902 (patch) | |
tree | 88a485634f4eb4a98c86fa5e3fc235a0363cf6bc /helix-tui/src/widgets/paragraph.rs | |
parent | f5b0821860940782567a0baa17280aef04f845e3 (diff) |
Update to rust 1.58, fix a bunch of optional lints
Diffstat (limited to 'helix-tui/src/widgets/paragraph.rs')
-rw-r--r-- | helix-tui/src/widgets/paragraph.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-tui/src/widgets/paragraph.rs b/helix-tui/src/widgets/paragraph.rs index 8bafbb9a..4e839162 100644 --- a/helix-tui/src/widgets/paragraph.rs +++ b/helix-tui/src/widgets/paragraph.rs @@ -166,7 +166,7 @@ impl<'a> Widget for Paragraph<'a> { Box::new(WordWrapper::new(&mut styled, text_area.width, trim)) } else { let mut line_composer = Box::new(LineTruncator::new(&mut styled, text_area.width)); - if let Alignment::Left = self.alignment { + if self.alignment == Alignment::Left { line_composer.set_horizontal_offset(self.scroll.1); } line_composer |