fix decos with workspace offset

This commit is contained in:
vaxerski
2022-06-27 00:25:37 +02:00
parent 3263e48675
commit 3d48469cb4
6 changed files with 37 additions and 7 deletions

View File

@@ -72,4 +72,9 @@ wlr_box CWindow::getWindowIdealBoundingBoxIgnoreReserved() {
}
return wlr_box{(int)POS.x, (int)POS.y, (int)SIZE.x, (int)SIZE.y};
}
void CWindow::updateWindowDecos() {
for (auto& wd : m_dWindowDecorations)
wd->updateWindow(this);
}