~callum/barszcz

48e230078e50f6aa465910eeead68ef4440bc024 — Callum Brown 2 years ago f2b5ce9
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)