Skip to content
Snippets Groups Projects
Commit d2d0db94 authored by deuce's avatar deuce
Browse files

Fix topline adjustment.

parent aa723cc4
No related branches found
No related tags found
No related merge requests found
......@@ -1223,7 +1223,7 @@ function quote_mode()
if(quote_line[i].selected) {
line.splice(ypos,0,quote_line[i]);
ypos++;
if(ypos-topline > lines_on_screen)
if(ypos-topline >= lines_on_screen)
topline++;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment