Fix bug
This commit is contained in:
parent
563cb4c99a
commit
cf009fd11e
1 changed files with 4 additions and 2 deletions
|
@ -92,14 +92,16 @@ private
|
||||||
Curses.setpos 0, 0
|
Curses.setpos 0, 0
|
||||||
Curses.addstr "items: #{@items.count}, height: #@height, active: #@active, top: #@top"
|
Curses.addstr "items: #{@items.count}, height: #@height, active: #@active, top: #@top"
|
||||||
|
|
||||||
@items.each_with_index.to_a[@top...(@top + @height)].each do |item, index|
|
@items[@top...(@top + @height)].each_with_index.each do |item, offset|
|
||||||
|
index = @top + offset
|
||||||
|
|
||||||
if index == @active
|
if index == @active
|
||||||
Curses.attron Curses.color_pair 2
|
Curses.attron Curses.color_pair 2
|
||||||
else
|
else
|
||||||
Curses.attron Curses.color_pair 1
|
Curses.attron Curses.color_pair 1
|
||||||
end
|
end
|
||||||
|
|
||||||
Curses.setpos 1 + index, 0
|
Curses.setpos 1 + offset, 0
|
||||||
Curses.addstr "#{index}: #{item}".ljust Curses.stdscr.maxx
|
Curses.addstr "#{index}: #{item}".ljust Curses.stdscr.maxx
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Reference in a new issue