forked from external/yambar
bar: ignore events we're not interrested in
This commit is contained in:
parent
7dd35f1159
commit
94dbe3b892
1 changed files with 4 additions and 1 deletions
5
bar.c
5
bar.c
|
@ -622,10 +622,13 @@ run(struct bar_run_context *run_ctx)
|
|||
}
|
||||
|
||||
case XCB_DESTROY_NOTIFY:
|
||||
LOG_WARN("unimplemented event: XCB_DESTROY_NOTIFY");
|
||||
break;
|
||||
|
||||
case XCB_REPARENT_NOTIFY:
|
||||
case XCB_CONFIGURE_NOTIFY:
|
||||
case XCB_MAP_NOTIFY:
|
||||
LOG_WARN("unimplemented event: %d", XCB_EVENT_RESPONSE_TYPE(e));
|
||||
/* Just ignore */
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Add table
Reference in a new issue