Make input_win 1 line heigh rather than zero Don't know how that happened.
1 files changed, 1 insertions(+), 1 deletions(-) M beetsplug/barszcz.py
M beetsplug/barszcz.py => beetsplug/barszcz.py +1 -1
@@ 512,7 512,7 @@ class Barszcz: stdscr.hline(height-2, 0, curses.ACS_HLINE, width) stdscr.refresh() - input_win = curses.newwin(0, width, height-1, 0) + input_win = curses.newwin(1, width, height-1, 0) input_box = InputLine(input_win) self.set_group_dimensions(height, width)