Skip to content
Snippets Groups Projects
Commit 1307a91e authored by Valentin Perrelle's avatar Valentin Perrelle Committed by Andre Maroneze
Browse files

[Analysis Scripts] Increase ncurses window height

parent 8db03da6
No related branches found
No related tags found
No related merge requests found
...@@ -192,7 +192,7 @@ class CursesDisplay(PlainDisplay): ...@@ -192,7 +192,7 @@ class CursesDisplay(PlainDisplay):
stdscr.nodelay(True) stdscr.nodelay(True)
stdscr.refresh() # Needs to be done once or nothing will be output stdscr.refresh() # Needs to be done once or nothing will be output
self.window = curses.newpad(400, 160) self.window = curses.newpad(2000, 160)
curses.init_color(curses.COLOR_YELLOW, 300, 300, 300) curses.init_color(curses.COLOR_YELLOW, 300, 300, 300)
curses.init_pair(1, curses.COLOR_RED, 0) curses.init_pair(1, curses.COLOR_RED, 0)
curses.init_pair(2, curses.COLOR_GREEN, 0) curses.init_pair(2, curses.COLOR_GREEN, 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment