mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-16 04:23:49 -07:00
fixes to window swallowing with same pid
This commit is contained in:
@@ -400,14 +400,13 @@ void Events::listener_mapWindow(void* owner, void* data) {
|
|||||||
|
|
||||||
if (w->getPID() == ppid) {
|
if (w->getPID() == ppid) {
|
||||||
found.push_back(w.get());
|
found.push_back(w.get());
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (found.size() > 1) {
|
if (found.size() > 1) {
|
||||||
for (auto& w : found) {
|
for (auto& w : found) {
|
||||||
// try get the focus
|
// try get the focus
|
||||||
if (w == g_pCompositor->m_pLastWindow) {
|
if (w == PFOCUSEDWINDOWPREV) {
|
||||||
finalFound = w;
|
finalFound = w;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user