Fix buggy selection when scrolling down

When scrolling down with a selection on screen the first line was not
properly selected. This has been fixed by making sure the selection
always starts in the first cell when it is only partially visible.
This commit is contained in:
Christian Duerr 2018-03-13 22:07:23 +01:00 committed by Joe Wilm
parent 58c69cafad
commit b0f272f419
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ impl<'a> RenderableCellsIter<'a> {
Some((start_line, loc.start.col, end_line, loc.end.col))
},
(Some(start_line), None) => {
Some((start_line, loc.start.col, Line(0), grid.num_cols()))
Some((start_line, loc.start.col, Line(0), Column(0)))
},
(None, Some(end_line)) => {
Some((grid.num_lines(), Column(0), end_line, loc.end.col))