Don't enumerate disconnected outputs

This commit is contained in:
LemonBoy 2014-02-20 20:38:50 +00:00
parent 64a81bea0e
commit 66e8b40be1
1 changed files with 1 additions and 1 deletions

2
bar.c
View File

@ -470,7 +470,7 @@ get_randr_monitors (void)
oi_reply = xcb_randr_get_output_info_reply(c, xcb_randr_get_output_info(c, outputs[i], XCB_CURRENT_TIME), NULL);
/* Output disconnected or not attached to any CRTC ? */
if (!oi_reply || oi_reply->crtc == XCB_NONE) {
if (!oi_reply || oi_reply->crtc == XCB_NONE || oi_reply->connection != XCB_RANDR_CONNECTION_CONNECTED) {
rects[i].width = 0;
continue;
}