diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-09-29 17:47:12 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-09-29 17:47:12 +0000 |
commit | b0d8393c05bd18d639af158f2d6e83ad2468da7b (patch) | |
tree | 6b83ae1bd38020150c47b3f0d38b3e940f6ef639 | |
parent | c2a5ffa6a4dd8916734d21a1e8929b32dec84619 (diff) | |
download | rtmux-b0d8393c05bd18d639af158f2d6e83ad2468da7b.tar.gz rtmux-b0d8393c05bd18d639af158f2d6e83ad2468da7b.tar.bz2 rtmux-b0d8393c05bd18d639af158f2d6e83ad2468da7b.zip |
Clear status bar cell.
-rw-r--r-- | status.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: status.c,v 1.48 2008-09-26 06:45:27 nicm Exp $ */ +/* $Id: status.c,v 1.49 2008-09-29 17:47:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -50,6 +50,7 @@ status_redraw(struct client *c) if (gettimeofday(&c->status_timer, NULL) != 0) fatal("gettimeofday"); + memcpy(&gc, &grid_default_cell, sizeof gc); gc.fg = options_get_number(&s->options, "status-fg"); gc.bg = options_get_number(&s->options, "status-bg"); |