[ruby/reline] Rename DIALOG_HEIGHT with DIALOG_DEFAULT_HEIGHT

https://github.com/ruby/reline/commit/996bfec64b
This commit is contained in:
aycabta 2021-10-06 00:09:03 +09:00 коммит произвёл git
Родитель 217df51f0e
Коммит a2f55679f0
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -622,7 +622,7 @@ class Reline::LineEditor
@dialogs << Dialog.new(name, @config, DialogProcScope.new(self, @config, p, context))
end
DIALOG_HEIGHT = 20
DIALOG_DEFAULT_HEIGHT = 20
private def render_dialog(cursor_column)
@dialogs.each do |dialog|
render_each_dialog(dialog, cursor_column)
@ -662,7 +662,7 @@ class Reline::LineEditor
else
dialog.width = dialog.contents.map { |l| calculate_width(l, true) }.max
end
height = dialog_render_info.height || DIALOG_HEIGHT
height = dialog_render_info.height || DIALOG_DEFAULT_HEIGHT
height = dialog.contents.size if dialog.contents.size < height
if dialog.contents.size > height
if dialog.pointer