From 55b657996fde7c2cd6a098cfa8d2a73d7f0dee4f Mon Sep 17 00:00:00 2001 From: John Vogel Date: Tue, 17 Dec 2013 20:16:58 -0500 Subject: [PATCH] Clean up after removing screen_adjust removal. --- bar.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bar.c b/bar.c index 3b74ce9..0e97f47 100644 --- a/bar.c +++ b/bar.c @@ -590,12 +590,13 @@ handle_randr_event (xcb_generic_event_t *ev) screen_t *s, *t = screens; num = get_randr_outputs(scr->root, &s); -// num_screens = screen_adjust(s, num, &screens); if (num <= 0) { fprintf(stderr, "handle_randr_event: no outputs\n"); exit(1); } + /* there needs to be more fixups after the screens are returned */ screens = s; + num_screens = num; free(t); }