Merge pull request #3 from wose/master

fixes scroll handling for paragraph widget
pull/5/head
Florian Dehau 7 years ago committed by GitHub
commit 5e4960162d

@ -264,7 +264,7 @@ impl<'a> Widget for Paragraph<'a> {
continue;
}
if y > text_area.height - 1 {
if y > text_area.height + self.scroll - 1 {
break;
}

Loading…
Cancel
Save