mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 22:43:58 +00:00
Write status across entire line.
This commit is contained in:
4
status.c
4
status.c
@ -1,4 +1,4 @@
|
||||
/* $Id: status.c,v 1.15 2007-12-06 09:46:23 nicm Exp $ */
|
||||
/* $Id: status.c,v 1.16 2008-01-03 19:18:14 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -49,7 +49,7 @@ status_write_client(struct client *c)
|
||||
screen_redraw_write_string(
|
||||
&ctx, "%d:%s%c ", wl->idx, wl->window->name, flag);
|
||||
|
||||
if (ctx.s->cx >= screen_last_x(ctx.s))
|
||||
if (ctx.s->cx > screen_size_x(ctx.s))
|
||||
break;
|
||||
}
|
||||
screen_redraw_clear_end_of_line(&ctx);
|
||||
|
Reference in New Issue
Block a user