The default terminal size should be 80x24, not 80x25.

This commit is contained in:
Nicholas Marriott
2009-09-15 07:45:16 +00:00
parent 8548624676
commit f39865e8e4
3 changed files with 4 additions and 4 deletions

View File

@ -197,7 +197,7 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx)
/* Find new session size. */
if (detached) {
sx = 80;
sy = 25;
sy = 24;
} else if (ctx->cmdclient != NULL) {
sx = ctx->cmdclient->tty.sx;
sy = ctx->cmdclient->tty.sy;