diff options
Diffstat (limited to 'screen-redraw.c')
-rw-r--r-- | screen-redraw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/screen-redraw.c b/screen-redraw.c index 7542d14e..1b6b5b47 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -1,4 +1,4 @@ -/* $Id: screen-redraw.c,v 1.12 2008-09-25 20:08:54 nicm Exp $ */ +/* $Id: screen-redraw.c,v 1.13 2008-09-26 06:45:26 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -132,7 +132,7 @@ screen_redraw_cell(struct screen_redraw_ctx *ctx, u_int px, u_int py) ctx->write(ctx->data, TTY_CURSORMOVE, ctx->s->cx, ctx->s->cy); } - gc = grid_view_peek_cell(ctx->s->grid, px, py); + gc = grid_view_peek_cell(ctx->s->grid, px, py); if (screen_check_selection(ctx->s, px, py)) { memcpy(&hc, gc, sizeof hc); hc.attr |= GRID_ATTR_REVERSE; |