Skip to content

Commit b82a347

Browse files
committedDec 15, 2022
Scroll forward of the cli cause tailtips to collide with text, fixes #738
1 parent fcc8ce6 commit b82a347

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎reader/src/main/java/org/jline/reader/impl/LineReaderImpl.java

+3
Original file line numberDiff line numberDiff line change
@@ -3797,6 +3797,9 @@ protected void redisplay(boolean flush) {
37973797

37983798
Status status = Status.getStatus(terminal, false);
37993799
if (status != null) {
3800+
if (terminal.getType().startsWith(AbstractWindowsTerminal.TYPE_WINDOWS)) {
3801+
status.resize();
3802+
}
38003803
status.redraw();
38013804
}
38023805

0 commit comments

Comments
 (0)
Please sign in to comment.