From ae096219e83b1a90990f2277b5a9302a3e943d84 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 5 Jul 2022 21:45:32 +0200 Subject: [PATCH] do updates on every mon update if VFR is enabled --- src/events/Monitors.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/events/Monitors.cpp b/src/events/Monitors.cpp index 562c4533..d46b02ff 100644 --- a/src/events/Monitors.cpp +++ b/src/events/Monitors.cpp @@ -184,7 +184,7 @@ void Events::listener_monitorFrame(void* owner, void* data) { // Hack: only check when monitor with top hz refreshes, saves a bit of resources. // This is for stuff that should be run every frame - if (PMONITOR->ID == pMostHzMonitor->ID) { + if (PMONITOR->ID == pMostHzMonitor->ID || *VFRENABLED) { // unfortunately with VFR we don't have the guarantee mostHz is going to be updated all the time, so we have to ignore that g_pCompositor->sanityCheckWorkspaces(); g_pAnimationManager->tick(); g_pCompositor->cleanupFadingOut();