Use unchecked instead of checked call because the error has to be in the error queue
This commit is contained in:
parent
98091b2f1e
commit
4bd034f768
|
@ -103,7 +103,7 @@ x_select_input(xcb_connection_t *c, xcb_window_t w,
|
|||
uint32_t event_mask)
|
||||
{
|
||||
const uint32_t config_win_val[] = { event_mask };
|
||||
xcb_change_window_attributes_checked(c, w, XCB_CW_EVENT_MASK, config_win_val);
|
||||
xcb_change_window_attributes(c, w, XCB_CW_EVENT_MASK, config_win_val);
|
||||
}
|
||||
|
||||
/** Equivalent to 'XGetTransientForHint' which is actually a
|
||||
|
|
Loading…
Reference in New Issue