update activewindow on its title change

This commit is contained in:
vaxerski 2022-05-25 17:29:44 +02:00
parent b2769bab68
commit c8f0a74975

View File

@ -276,6 +276,9 @@ void Events::listener_setTitleWindow(void* owner, void* data) {
PWINDOW->m_szTitle = g_pXWaylandManager->getTitle(PWINDOW);
if (PWINDOW == g_pCompositor->m_pLastWindow) // if it's the active, let's post an event to update others
g_pEventManager->postEvent(SHyprIPCEvent("activewindow", PWINDOW->m_szTitle));
Debug::log(LOG, "Window %x set title to %s", PWINDOW, PWINDOW->m_szTitle.c_str());
}