mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 04:45:59 +01:00
cursormgr: fix memory leak with cursor buffers
This commit is contained in:
parent
7e41e5146d
commit
18a35b1406
1 changed files with 4 additions and 1 deletions
|
@ -127,9 +127,12 @@ void CCursorManager::setCursorFromName(const std::string& name) {
|
|||
Vector2D{m_sCurrentCursorShapeData.images[0].size, m_sCurrentCursorShapeData.images[0].size},
|
||||
Vector2D{m_sCurrentCursorShapeData.images[0].hotspotX, m_sCurrentCursorShapeData.images[0].hotspotY}));
|
||||
|
||||
if (g_pCompositor->m_sWLRCursor)
|
||||
if (g_pCompositor->m_sWLRCursor) {
|
||||
wlr_cursor_set_buffer(g_pCompositor->m_sWLRCursor, getCursorBuffer(), m_sCurrentCursorShapeData.images[0].hotspotX, m_sCurrentCursorShapeData.images[0].hotspotY,
|
||||
m_fCursorScale);
|
||||
if (m_vCursorBuffers.size() > 1)
|
||||
wlr_buffer_drop(&m_vCursorBuffers.front()->wlrBuffer.base);
|
||||
}
|
||||
|
||||
m_bOurBufferConnected = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue