mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 13:45:58 +01:00
input: don't schedule repaint on cursor move if hardware cursors are in use
This commit is contained in:
parent
b8a615ffb8
commit
92cb44ddb2
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) {
|
|||
if (*PZOOMFACTOR != 1.f)
|
||||
g_pHyprRenderer->damageMonitor(PMONITOR);
|
||||
|
||||
if (!PMONITOR->solitaryClient && g_pHyprRenderer->shouldRenderCursor())
|
||||
if (!PMONITOR->solitaryClient && g_pHyprRenderer->shouldRenderCursor() && PMONITOR->output->software_cursor_locks > 0)
|
||||
g_pCompositor->scheduleFrameForMonitor(PMONITOR);
|
||||
|
||||
CWindow* forcedFocus = m_pForcedFocus;
|
||||
|
|
Loading…
Reference in a new issue