From f39865e8e4aa1a8918c64cfc40fb0acc644861a4 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 15 Sep 2009 07:45:16 +0000 Subject: The default terminal size should be 80x24, not 80x25. --- cmd-new-session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd-new-session.c') diff --git a/cmd-new-session.c b/cmd-new-session.c index a05a4846..df1ec45c 100644 --- a/cmd-new-session.c +++ b/cmd-new-session.c @@ -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; -- cgit v1.2.3