Revert "Update Hyprpaper.cpp (#31)"

This reverts commit 1c19aa2b4f.
This commit is contained in:
Vaxry 2023-01-05 14:39:29 +01:00
parent 1c19aa2b4f
commit 50852e5319
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ void CHyprpaper::ensurePoolBuffersPresent() {
if (m->size == Vector2D()) if (m->size == Vector2D())
continue; continue;
auto it = std::find_if(m_vBuffers.begin(), m_vBuffers.end(), [wt = wt, &m](const std::unique_ptr<SPoolBuffer>& el) { auto it = std::find_if(m_vBuffers.begin(), m_vBuffers.end(), [&](const std::unique_ptr<SPoolBuffer>& el) {
return el->target == wt.m_szPath && el->pixelSize == m->size * m->scale; return el->target == wt.m_szPath && el->pixelSize == m->size * m->scale;
}); });