mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-26 06:05:59 +01:00
1483: fix crash on last display disconnect (#2344)
This commit is contained in:
parent
9f8c5cb63c
commit
ad244190e0
1 changed files with 4 additions and 0 deletions
|
@ -91,6 +91,10 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) {
|
||||||
|
|
||||||
const auto PMONITOR = g_pCompositor->getMonitorFromCursor();
|
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)
|
if (*PZOOMFACTOR != 1.f)
|
||||||
g_pHyprRenderer->damageMonitor(PMONITOR);
|
g_pHyprRenderer->damageMonitor(PMONITOR);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue