Skip to content

Commit

Permalink
Fix #492: 3.13 prevents scrolling in ConsoleZ
Browse files Browse the repository at this point in the history
  • Loading branch information
mattirn committed Jan 6, 2020
1 parent 94a83fd commit 2327d64
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -1139,7 +1139,8 @@ protected void handleSignal(Signal signal) {
}
size.copy(terminal.getBufferSize());
display.resize(size.getRows(), size.getColumns());
redrawLine();
// restores prompt but also prevents scrolling in consoleZ, see #492
// redrawLine();
redisplay();
}
else if (signal == Signal.CONT) {
Expand Down

0 comments on commit 2327d64

Please sign in to comment.