From e159b596d98e72ffad0123452b5d63708c93c4aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 1 Jan 2019 23:32:59 +0100 Subject: [PATCH] bar: ignore XCB_MAPPING_NOTIFY events --- bar.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bar.c b/bar.c index c39e29c..d5be6f5 100644 --- a/bar.c +++ b/bar.c @@ -628,6 +628,7 @@ run(struct bar_run_context *run_ctx) case XCB_REPARENT_NOTIFY: case XCB_CONFIGURE_NOTIFY: case XCB_MAP_NOTIFY: + case XCB_MAPPING_NOTIFY: /* Just ignore */ break;