Redraw the status line after renaming a session (it may contain the name).

pull/1/head
Nicholas Marriott 2009-07-10 17:34:51 +00:00
parent 4a6d62e401
commit 9cd5ba40d3
1 changed files with 2 additions and 0 deletions

View File

@ -53,5 +53,7 @@ cmd_rename_session_exec(struct cmd *self, struct cmd_ctx *ctx)
xfree(s->name);
s->name = xstrdup(data->arg);
server_status_session(s);
return (0);
}