fix bug with popups on XWayland

This commit is contained in:
vaxerski 2022-03-22 20:13:58 +01:00
parent 90bb8e6441
commit 6e48069a88
1 changed files with 3 additions and 1 deletions

View File

@ -64,7 +64,9 @@ void Events::listener_unmapWindow(wl_listener* listener, void* data) {
g_pCompositor->removeWindowFromVectorSafe(PWINDOW);
// refocus on a new window
g_pInputManager->refocus();
// TODO: investigate.
// If a parent window has focus, any popups (XWayland) will be broken (they will disappear instantly)
// g_pInputManager->refocus();
Debug::log(LOG, "Window %x unmapped", PWINDOW);
}