3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2026-03-03 13:54:45 +00:00

post empty activewindow event on unfocus

This commit is contained in:
vaxerski
2022-05-26 21:34:52 +02:00
parent 19a168792b
commit 8145c552de

View File

@ -133,6 +133,7 @@ void CKeybindManager::killActive(std::string args) {
g_pXWaylandManager->sendCloseWindow(g_pCompositor->m_pLastWindow);
g_pCompositor->m_pLastFocus = nullptr;
g_pCompositor->m_pLastWindow = nullptr;
g_pEventManager->postEvent(SHyprIPCEvent("activewindow", ",")); // post an activewindow event to empty, as we are currently unfocused
}
g_pCompositor->focusWindow(g_pCompositor->windowFromCursor());