Be more robust against X breakage
svn path=/trunk/; revision=22378
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
2009-02-19 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
Bug 572387 – gdm crashes after gtk 2.15.4 upgrade
|
||||||
|
|
||||||
|
* gdk/x11/gdkscreen-x11.c (init_xrandr13): If X is broken and returns
|
||||||
|
no monitors, fall back to other multihead init methods, so that we
|
||||||
|
at least get one monitor set up.
|
||||||
|
|
||||||
2009-02-19 Michael Natterer <mitch@imendio.com>
|
2009-02-19 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
* gtk/gtkmountoperation.c: sort functions so their order is more
|
* gtk/gtkmountoperation.c: sort functions so their order is more
|
||||||
|
@ -735,7 +735,7 @@ init_randr13 (GdkScreen *screen)
|
|||||||
screen_x11->n_monitors = monitors->len;
|
screen_x11->n_monitors = monitors->len;
|
||||||
screen_x11->monitors = (GdkX11Monitor *)g_array_free (monitors, FALSE);
|
screen_x11->monitors = (GdkX11Monitor *)g_array_free (monitors, FALSE);
|
||||||
|
|
||||||
return TRUE;
|
return screen_x11->n_monitors > 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
Reference in New Issue
Block a user