tearing-control: search through all valid windows

ref #5655
This commit is contained in:
Vaxry 2024-04-20 00:08:49 +01:00
parent b52a49b4c4
commit 1ebc32f5f4
1 changed files with 6 additions and 1 deletions

View File

@ -86,7 +86,12 @@ CTearingControl::CTearingControl(SP<CWaylandResource> resource_, wlr_surface* su
resource->setData(this);
resource->setOnDestroyHandler([](CWaylandResource* res) { PROTO::tearing->onControllerDestroy(reinterpret_cast<CTearingControl*>(res->data())); });
pWindow = g_pCompositor->getWindowFromSurface(surf_);
for (auto& w : g_pCompositor->m_vWindows) {
if (w->m_pWLSurface.wlr() == surf_) {
pWindow = w.get();
break;
}
}
}
void CTearingControl::onHint(uint32_t hint_) {