From 8ce430bd89bdd44dd065e9b56cd85d20affea4ef Mon Sep 17 00:00:00 2001 From: nhmall Date: Sat, 16 May 2026 22:13:40 -0400 Subject: [PATCH] put the values on other pdcurses platforms back They were set this way on other pdcurses platforms prior to this recent change, so leave them at those values. --- win/curses/cursinit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win/curses/cursinit.c b/win/curses/cursinit.c index efbc93950..9fcc1d962 100644 --- a/win/curses/cursinit.c +++ b/win/curses/cursinit.c @@ -787,9 +787,9 @@ curses_init_options(void) #else /* FIXME: should these be higher; is there a way to detect max there? */ if (iflags.wc2_term_cols == 0) - iflags.wc2_term_cols = 80; + iflags.wc2_term_cols = 110; if (iflags.wc2_term_rows == 0) - iflags.wc2_term_rows = 25; + iflags.wc2_term_rows = 32; #endif resize_term(iflags.wc2_term_rows, iflags.wc2_term_cols); getmaxyx(base_term, term_rows, term_cols);