Remove expose event mask, expose events will not be generated in any case

This commit is contained in:
Michael Stapelberg 2010-01-03 21:55:02 +01:00
parent 7b2363776a
commit a69dfb3f06
1 changed files with 1 additions and 4 deletions

View File

@ -107,7 +107,7 @@ static xcb_window_t open_input_window(xcb_connection_t *conn, Rect screen_rect,
xcb_window_t win = xcb_generate_id(conn);
uint32_t mask = 0;
uint32_t values[3];
uint32_t values[2];
mask |= XCB_CW_BACK_PIXEL;
values[0] = 0;
@ -115,9 +115,6 @@ static xcb_window_t open_input_window(xcb_connection_t *conn, Rect screen_rect,
mask |= XCB_CW_OVERRIDE_REDIRECT;
values[1] = 1;
mask |= XCB_CW_EVENT_MASK;
values[2] = XCB_EVENT_MASK_EXPOSURE;
/* center each popup on the specified screen */
uint32_t x = screen_rect.x + ((screen_rect.width / 2) - (width/2)),
y = screen_rect.y + ((screen_rect.height / 2) - (height/2));