diff options
Diffstat (limited to 'monitor/disp.c')
-rw-r--r-- | monitor/disp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor/disp.c b/monitor/disp.c index 7b11bef..992c712 100644 --- a/monitor/disp.c +++ b/monitor/disp.c @@ -24,7 +24,7 @@ void disp_init() { noecho(); nonl(); - const int status_win_width = COLS / 2; + const int status_win_width = COLS - 58; wpstatus = newwin(LINES - 4, status_win_width, 1, 1); wpstatus2 = newwin(10, COLS - status_win_width - 3, 1, status_win_width + 2); wpoutput = newwin(LINES - 13, COLS - status_win_width - 3, 11, status_win_width + 2); |