summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/reline/line_editor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reline/line_editor.rb b/lib/reline/line_editor.rb
index 2e84ca4d0c..e8b83e2a6e 100644
--- a/lib/reline/line_editor.rb
+++ b/lib/reline/line_editor.rb
@@ -724,7 +724,7 @@ class Reline::LineEditor
ymax = ymax.clamp(screen_y_range.begin, screen_y_range.end)
dialog_y = @first_line_started_from + @started_from
cursor_y = dialog_y
- if @highest_in_all < ymax
+ if @highest_in_all <= ymax
scroll_down(ymax - cursor_y)
move_cursor_up(ymax - cursor_y)
end