mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 11:05:58 +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].size, m_sCurrentCursorShapeData.images[0].size},
|
||||||
Vector2D{m_sCurrentCursorShapeData.images[0].hotspotX, m_sCurrentCursorShapeData.images[0].hotspotY}));
|
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,
|
wlr_cursor_set_buffer(g_pCompositor->m_sWLRCursor, getCursorBuffer(), m_sCurrentCursorShapeData.images[0].hotspotX, m_sCurrentCursorShapeData.images[0].hotspotY,
|
||||||
m_fCursorScale);
|
m_fCursorScale);
|
||||||
|
if (m_vCursorBuffers.size() > 1)
|
||||||
|
wlr_buffer_drop(&m_vCursorBuffers.front()->wlrBuffer.base);
|
||||||
|
}
|
||||||
|
|
||||||
m_bOurBufferConnected = true;
|
m_bOurBufferConnected = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue