From b588b1729ad9668a60d402d549506e56d72f1919 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 16 Mar 2019 19:12:13 +0000 Subject: Use a pointer for the active screen in the status line instead of copying them around all the time. --- window-client.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'window-client.c') diff --git a/window-client.c b/window-client.c index 2e977184..db1edbb3 100644 --- a/window-client.c +++ b/window-client.c @@ -229,10 +229,7 @@ window_client_draw(__unused void *modedata, void *itemdata, screen_write_hline(ctx, sx, 0, 0); screen_write_cursormove(ctx, cx, cy + sy - 1, 0); - if (c->status.old_screen != NULL) - screen_write_fast_copy(ctx, c->status.old_screen, 0, 0, sx, 1); - else - screen_write_fast_copy(ctx, &c->status.screen, 0, 0, sx, 1); + screen_write_fast_copy(ctx, &c->status.screen, 0, 0, sx, 1); } static struct screen * -- cgit