Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
<li>Adds ability to name tabs (#1690)</li>
<li>Adds dynamic loading of conpty.dll to allow mouse mode on Windows 10</li>
<li>Fix empty history jump (#1781)</li>
<li>Fixes crash on full screen scrolling</li>
</ul>
</description>
</release>
Expand Down
4 changes: 2 additions & 2 deletions src/vtbackend/Grid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,8 @@ void Grid<Cell>::scrollDown(LineCount vN, GraphicsAttributes const& defaultAttri

rotateBuffersRight(n);

for (Line<Cell>& line: mainPage().subspan(0, unbox<size_t>(n)))
line.reset(defaultLineFlags(), defaultAttributes);
for (auto const i: ranges::views::iota(0, *n))
_lines[i].reset(defaultLineFlags(), defaultAttributes);
return;
}

Expand Down
Loading