mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 18:11:05 -05:00
winsys-egl: fix typo in _cogl_winsys_onscreen_init
We were trying to set attr.event_mask instead of xattr.event mask which was causing a compilation error.
This commit is contained in:
parent
ef60979258
commit
4b6169267c
@ -964,7 +964,7 @@ _cogl_winsys_onscreen_init (CoglOnscreen *onscreen,
|
|||||||
DefaultRootWindow (xlib_renderer->xdpy),
|
DefaultRootWindow (xlib_renderer->xdpy),
|
||||||
xvisinfo->visual,
|
xvisinfo->visual,
|
||||||
AllocNone);
|
AllocNone);
|
||||||
attr.event_mask = COGL_ONSCREEN_X11_EVENT_MASK;
|
xattr.event_mask = COGL_ONSCREEN_X11_EVENT_MASK;
|
||||||
|
|
||||||
mask = CWBorderPixel | CWColormap | CWEventMask;
|
mask = CWBorderPixel | CWColormap | CWEventMask;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user