mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 03:22:04 +00:00
* clutter/eglx/clutter-stage-egl.c (clutter_stage_egl_realize):
Use clutter_x11_has_event_retrieval() instead of !backend_x11->no_xevent_retrieval to reflect the changes to the GLX backend in revision 3078
This commit is contained in:
parent
12fd095006
commit
1001d1ffa1
@ -1,3 +1,10 @@
|
||||
2008-07-02 Neil Roberts <neil@o-hand.com>
|
||||
|
||||
* clutter/eglx/clutter-stage-egl.c (clutter_stage_egl_realize):
|
||||
Use clutter_x11_has_event_retrieval() instead of
|
||||
!backend_x11->no_xevent_retrieval to reflect the changes to the
|
||||
GLX backend in revision 3078
|
||||
|
||||
2008-07-02 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
Bug 1010 - ClutterLabel does not update the layout (Lee Jusung)
|
||||
|
@ -177,9 +177,9 @@ clutter_stage_egl_realize (ClutterActor *actor)
|
||||
WhitePixel (stage_x11->xdpy,
|
||||
stage_x11->xscreen));
|
||||
|
||||
if (!backend_x11->no_xevent_retrieval)
|
||||
if (clutter_x11_has_event_retrieval ())
|
||||
{
|
||||
if (clutter_x11_has_xinput())
|
||||
if (clutter_x11_has_xinput ())
|
||||
{
|
||||
XSelectInput (stage_x11->xdpy, stage_x11->xwin,
|
||||
StructureNotifyMask |
|
||||
|
Loading…
Reference in New Issue
Block a user