1483: fix crash on last display disconnect (#2344)

This commit is contained in:
Russell Greene
2023-05-22 05:18:07 -05:00
committed by GitHub
parent 9f8c5cb63c
commit ad244190e0

View File

@@ -91,6 +91,10 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) {
const auto PMONITOR = g_pCompositor->getMonitorFromCursor();
// this can happen if there are no displays hooked up to Hyprland
if (PMONITOR == nullptr)
return;
if (*PZOOMFACTOR != 1.f)
g_pHyprRenderer->damageMonitor(PMONITOR);