Bugfix: Initialize screens correctly when not using Xinerama (Thanks Mikael)
This commit is contained in:
parent
ca8a194c56
commit
a81108c527
@ -246,20 +246,19 @@ void initialize_xinerama(xcb_connection_t *conn) {
|
|||||||
if (!xcb_get_extension_data(conn, &xcb_xinerama_id)->present) {
|
if (!xcb_get_extension_data(conn, &xcb_xinerama_id)->present) {
|
||||||
LOG("Xinerama extension not found, disabling.\n");
|
LOG("Xinerama extension not found, disabling.\n");
|
||||||
disable_xinerama(conn);
|
disable_xinerama(conn);
|
||||||
return;
|
} else {
|
||||||
|
xcb_xinerama_is_active_reply_t *reply;
|
||||||
|
reply = xcb_xinerama_is_active_reply(conn, xcb_xinerama_is_active(conn), NULL);
|
||||||
|
|
||||||
|
if (reply == NULL || !reply->state) {
|
||||||
|
LOG("Xinerama is not active (in your X-Server), disabling.\n");
|
||||||
|
disable_xinerama(conn);
|
||||||
|
} else
|
||||||
|
query_screens(conn, virtual_screens);
|
||||||
|
|
||||||
|
FREE(reply);
|
||||||
}
|
}
|
||||||
|
|
||||||
xcb_xinerama_is_active_reply_t *reply;
|
|
||||||
reply = xcb_xinerama_is_active_reply(conn, xcb_xinerama_is_active(conn), NULL);
|
|
||||||
|
|
||||||
if (reply == NULL || !reply->state) {
|
|
||||||
LOG("Xinerama is not active (in your X-Server), disabling.\n");
|
|
||||||
disable_xinerama(conn);
|
|
||||||
} else
|
|
||||||
query_screens(conn, virtual_screens);
|
|
||||||
|
|
||||||
FREE(reply);
|
|
||||||
|
|
||||||
i3Screen *screen;
|
i3Screen *screen;
|
||||||
num_screens = 0;
|
num_screens = 0;
|
||||||
/* Just go through each workspace and associate as many screens as we can. */
|
/* Just go through each workspace and associate as many screens as we can. */
|
||||||
|
Loading…
Reference in New Issue
Block a user