From 813f34d5eed1e7518ac01b70c7792292f7cb0e84 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Wed, 9 Mar 2022 12:34:40 +0100 Subject: [PATCH] fix issue with bars --- src/windowManager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/windowManager.cpp b/src/windowManager.cpp index 75a95d2..1d3e7f9 100644 --- a/src/windowManager.cpp +++ b/src/windowManager.cpp @@ -358,8 +358,7 @@ void CWindowManager::processBarHiding() { } else if (!WORK->getHasFullscreenWindow() && w.getDockHidden()) { - const auto COOKIE = xcb_map_window(DisplayConnection, w.getDrawable()); - Events::ignoredEvents.push_back(COOKIE.sequence); + xcb_map_window(DisplayConnection, w.getDrawable()); w.setDockHidden(false); } }